Skip to content

Commit 88b5343

Browse files
committed
github: bump actions versions to avoid deprecation
(cherry picked from commit 0d62134)
1 parent 14fd58c commit 88b5343

4 files changed

Lines changed: 7 additions & 7 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/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)