Skip to content

Commit e0511d4

Browse files
committed
github: bump actions versions to avoid deprecation
(cherry picked from commit 0d62134)
1 parent 3e99d46 commit e0511d4

5 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
apt-get install -y git lsb-release gnupg2 wget
6767
6868
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
69-
- uses: actions/checkout@v4
69+
- uses: actions/checkout@v5
7070
with:
7171
submodules: recursive
7272

.github/workflows/multiarch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ jobs:
3838
apt-get install -y git lsb-release gnupg2 wget
3939
4040
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
with:
4343
submodules: recursive
4444

4545
# Cache the compiler cache
4646
- name: Cache the compiler cache
47-
uses: actions/cache@v4
47+
uses: actions/cache@v5
4848
if: endsWith(matrix.compiler, '-qemu-cross')
4949
with:
5050
path: ccache

.github/workflows/rtp.io.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@ jobs:
4242
apt-get update
4343
apt-get install -y git lsb-release gnupg2 wget
4444
45-
- uses: actions/checkout@v4
45+
- uses: actions/checkout@v5
4646
with:
4747
submodules: recursive
4848

4949
- name: Checkout VoIPTests repo
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v5
5151
with:
5252
repository: 'sippy/voiptests'
5353
path: dist/voiptests
5454

5555
- name: Checkout RTPProxy repo
56-
uses: actions/checkout@v4
56+
uses: actions/checkout@v5
5757
with:
5858
repository: 'sippy/rtpproxy'
5959
path: dist/rtpproxy
@@ -83,7 +83,7 @@ jobs:
8383
ONE_MODULE=rtp.io LDFLAGS=-flto CFLAGS=-flto sh -x scripts/build/do_build.sh
8484
8585
- name: Set up Python ${{ env.PYTHON_VERSION }}
86-
uses: actions/setup-python@v5
86+
uses: actions/setup-python@v6
8787
with:
8888
python-version: ${{ env.PYTHON_VERSION }}
8989

.github/workflows/stale.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
pull-requests: write
1414

1515
steps:
16-
- uses: actions/stale@v4
16+
- uses: actions/stale@v10
1717
with:
1818
repo-token: ${{ secrets.GITHUB_TOKEN }}
1919
stale-issue-message: 'Any updates here? No progress has been made in the last 15 days, marking as stale. Will close this issue if no further updates are made in the next 30 days.'

.github/workflows/unittests.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,12 @@ jobs:
6868
apt-get install -y git lsb-release gnupg2 wget
6969
7070
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
71-
- uses: actions/checkout@v4
71+
- uses: actions/checkout@v5
7272
with:
7373
submodules: recursive
7474

7575
- name: Cache the compiler cache
76-
uses: actions/cache@v4
76+
uses: actions/cache@v5
7777
if: endsWith(matrix.compiler, '-qemu-cross')
7878
with:
7979
path: ccache
@@ -113,7 +113,7 @@ jobs:
113113
run: script -e unit_tests.log -c 'sh -x scripts/build/do_build.sh DEFS_EXTRA_OPTS="-DUNIT_TESTS -fPIE -fPIC"'
114114

115115
- name: Collect test logs
116-
uses: actions/upload-artifact@v4
116+
uses: actions/upload-artifact@v7
117117
with:
118118
name: unit_tests-logs_${{ matrix.os }}_${{ matrix.compiler }}
119119
path: |

0 commit comments

Comments
 (0)