Skip to content

Commit 476b240

Browse files
committed
Merge branch 'js/ci-github-actions-update' into maint-2.51
CI update. * js/ci-github-actions-update: build(deps): bump actions/github-script from 7 to 8 build(deps): bump actions/setup-python from 5 to 6 build(deps): bump actions/checkout from 4 to 5 build(deps): bump actions/download-artifact from 4 to 5
2 parents 3b9055c + 96978d7 commit 476b240

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

.github/workflows/check-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
jobname: ClangFormat
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
with:
2525
fetch-depth: 0
2626

.github/workflows/check-whitespace.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
check-whitespace:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v4
22+
- uses: actions/checkout@v5
2323
with:
2424
fetch-depth: 0
2525

.github/workflows/coverity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
COVERITY_LANGUAGE: cxx
3939
COVERITY_PLATFORM: overridden-below
4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v5
4242
- name: install minimal Git for Windows SDK
4343
if: contains(matrix.os, 'windows')
4444
uses: git-for-windows/setup-git-for-windows-sdk@v1

.github/workflows/main.yml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
echo "skip_concurrent=$skip_concurrent" >>$GITHUB_OUTPUT
6464
- name: skip if the commit or tree was already tested
6565
id: skip-if-redundant
66-
uses: actions/github-script@v7
66+
uses: actions/github-script@v8
6767
if: steps.check-ref.outputs.enabled == 'yes'
6868
with:
6969
github-token: ${{secrets.GITHUB_TOKEN}}
@@ -112,7 +112,7 @@ jobs:
112112
group: windows-build-${{ github.ref }}
113113
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
114114
steps:
115-
- uses: actions/checkout@v4
115+
- uses: actions/checkout@v5
116116
- uses: git-for-windows/setup-git-for-windows-sdk@v1
117117
- name: build
118118
shell: bash
@@ -140,7 +140,7 @@ jobs:
140140
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
141141
steps:
142142
- name: download tracked files and build artifacts
143-
uses: actions/download-artifact@v4
143+
uses: actions/download-artifact@v5
144144
with:
145145
name: windows-artifacts
146146
path: ${{github.workspace}}
@@ -173,10 +173,10 @@ jobs:
173173
group: vs-build-${{ github.ref }}
174174
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
175175
steps:
176-
- uses: actions/checkout@v4
176+
- uses: actions/checkout@v5
177177
- uses: git-for-windows/setup-git-for-windows-sdk@v1
178178
- name: initialize vcpkg
179-
uses: actions/checkout@v4
179+
uses: actions/checkout@v5
180180
with:
181181
repository: 'microsoft/vcpkg'
182182
path: 'compat/vcbuild/vcpkg'
@@ -226,7 +226,7 @@ jobs:
226226
steps:
227227
- uses: git-for-windows/setup-git-for-windows-sdk@v1
228228
- name: download tracked files and build artifacts
229-
uses: actions/download-artifact@v4
229+
uses: actions/download-artifact@v5
230230
with:
231231
name: vs-artifacts
232232
path: ${{github.workspace}}
@@ -258,8 +258,8 @@ jobs:
258258
group: windows-meson-build-${{ github.ref }}
259259
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
260260
steps:
261-
- uses: actions/checkout@v4
262-
- uses: actions/setup-python@v5
261+
- uses: actions/checkout@v5
262+
- uses: actions/setup-python@v6
263263
- name: Set up dependencies
264264
shell: pwsh
265265
run: pip install meson ninja
@@ -286,13 +286,13 @@ jobs:
286286
group: windows-meson-test-${{ matrix.nr }}-${{ github.ref }}
287287
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
288288
steps:
289-
- uses: actions/checkout@v4
290-
- uses: actions/setup-python@v5
289+
- uses: actions/checkout@v5
290+
- uses: actions/setup-python@v6
291291
- name: Set up dependencies
292292
shell: pwsh
293293
run: pip install meson ninja
294294
- name: Download build artifacts
295-
uses: actions/download-artifact@v4
295+
uses: actions/download-artifact@v5
296296
with:
297297
name: windows-meson-artifacts
298298
path: build
@@ -331,7 +331,7 @@ jobs:
331331
TEST_OUTPUT_DIRECTORY: ${{github.workspace}}/t
332332
runs-on: ${{matrix.vector.pool}}
333333
steps:
334-
- uses: actions/checkout@v4
334+
- uses: actions/checkout@v5
335335
- run: ci/install-dependencies.sh
336336
- run: ci/run-build-and-tests.sh
337337
- name: print test failures
@@ -352,7 +352,7 @@ jobs:
352352
CI_JOB_IMAGE: ubuntu-latest
353353
runs-on: ubuntu-latest
354354
steps:
355-
- uses: actions/checkout@v4
355+
- uses: actions/checkout@v5
356356
- run: ci/install-dependencies.sh
357357
- run: ci/run-build-and-minimal-fuzzers.sh
358358
dockerized:
@@ -429,7 +429,7 @@ jobs:
429429
else
430430
apt-get -q update && apt-get -q -y install git
431431
fi
432-
- uses: actions/checkout@v4
432+
- uses: actions/checkout@v5
433433
- run: ci/install-dependencies.sh
434434
- run: useradd builder --create-home
435435
- run: chown -R builder .
@@ -454,7 +454,7 @@ jobs:
454454
group: static-analysis-${{ github.ref }}
455455
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
456456
steps:
457-
- uses: actions/checkout@v4
457+
- uses: actions/checkout@v5
458458
- run: ci/install-dependencies.sh
459459
- run: ci/run-static-analysis.sh
460460
- run: ci/check-directional-formatting.bash
@@ -469,7 +469,7 @@ jobs:
469469
group: sparse-${{ github.ref }}
470470
cancel-in-progress: ${{ needs.ci-config.outputs.skip_concurrent == 'yes' }}
471471
steps:
472-
- uses: actions/checkout@v4
472+
- uses: actions/checkout@v5
473473
- name: Install other dependencies
474474
run: ci/install-dependencies.sh
475475
- run: make sparse
@@ -485,6 +485,6 @@ jobs:
485485
CI_JOB_IMAGE: ubuntu-latest
486486
runs-on: ubuntu-latest
487487
steps:
488-
- uses: actions/checkout@v4
488+
- uses: actions/checkout@v5
489489
- run: ci/install-dependencies.sh
490490
- run: ci/test-documentation.sh

0 commit comments

Comments
 (0)