Skip to content

Commit b859f42

Browse files
ci: bump the actions group across 1 directory with 10 updates
Bumps the actions group with 10 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `7` | | [actions/cache](https://github.com/actions/cache) | `4` | `6` | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `7` | | [actions/setup-java](https://github.com/actions/setup-java) | `4` | `6` | | [android-actions/setup-android](https://github.com/android-actions/setup-android) | `3` | `4` | | [gradle/actions](https://github.com/gradle/actions) | `4` | `6` | | [actions/setup-python](https://github.com/actions/setup-python) | `5` | `7` | | [actions/upload-pages-artifact](https://github.com/actions/upload-pages-artifact) | `3` | `5` | | [actions/deploy-pages](https://github.com/actions/deploy-pages) | `4` | `5` | | [crazy-max/ghaction-github-labeler](https://github.com/crazy-max/ghaction-github-labeler) | `5` | `6` | Updates `actions/checkout` from 4 to 7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v7) Updates `actions/cache` from 4 to 6 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v6) Updates `actions/upload-artifact` from 4 to 7 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v7) Updates `actions/setup-java` from 4 to 6 - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](actions/setup-java@v4...v6) Updates `android-actions/setup-android` from 3 to 4 - [Release notes](https://github.com/android-actions/setup-android/releases) - [Commits](android-actions/setup-android@v3...v4) Updates `gradle/actions` from 4 to 6 - [Release notes](https://github.com/gradle/actions/releases) - [Commits](gradle/actions@v4...v6) Updates `actions/setup-python` from 5 to 7 - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v5...v7) Updates `actions/upload-pages-artifact` from 3 to 5 - [Release notes](https://github.com/actions/upload-pages-artifact/releases) - [Commits](actions/upload-pages-artifact@v3...v5) Updates `actions/deploy-pages` from 4 to 5 - [Release notes](https://github.com/actions/deploy-pages/releases) - [Commits](actions/deploy-pages@v4...v5) Updates `crazy-max/ghaction-github-labeler` from 5 to 6 - [Release notes](https://github.com/crazy-max/ghaction-github-labeler/releases) - [Commits](crazy-max/ghaction-github-labeler@v5...v6) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/checkout dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/deploy-pages dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-java dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/setup-python dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: actions/upload-pages-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: android-actions/setup-android dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: crazy-max/ghaction-github-labeler dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions - dependency-name: gradle/actions dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent c274df1 commit b859f42

6 files changed

Lines changed: 37 additions & 37 deletions

File tree

.github/workflows/ci.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
quality: ${{ steps.d.outputs.quality }}
2828
cxx: ${{ steps.d.outputs.cxx }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v7
3131

3232
- id: d
3333
name: Look for the component directories
@@ -90,7 +90,7 @@ jobs:
9090
CCACHE_MAXSIZE: 500M
9191
CMAKE_BUILD_PARALLEL_LEVEL: 4
9292
steps:
93-
- uses: actions/checkout@v4
93+
- uses: actions/checkout@v7
9494

9595
- name: Install toolchain and runtime dependencies
9696
run: |
@@ -107,7 +107,7 @@ jobs:
107107
fi
108108
109109
- name: Restore ccache
110-
uses: actions/cache@v4
110+
uses: actions/cache@v6
111111
with:
112112
path: ${{ env.CCACHE_DIR }}
113113
key: ccache-linux-${{ matrix.toolchain }}-${{ github.sha }}
@@ -178,7 +178,7 @@ jobs:
178178

179179
- name: Upload test logs
180180
if: always()
181-
uses: actions/upload-artifact@v4
181+
uses: actions/upload-artifact@v7
182182
with:
183183
name: test-logs-linux-${{ matrix.toolchain }}
184184
if-no-files-found: ignore
@@ -200,7 +200,7 @@ jobs:
200200
env:
201201
CMAKE_BUILD_PARALLEL_LEVEL: 4
202202
steps:
203-
- uses: actions/checkout@v4
203+
- uses: actions/checkout@v7
204204

205205
- name: Install mingw-w64
206206
run: |
@@ -255,20 +255,20 @@ jobs:
255255
run:
256256
working-directory: bench
257257
steps:
258-
- uses: actions/checkout@v4
258+
- uses: actions/checkout@v7
259259

260-
- uses: actions/setup-java@v4
260+
- uses: actions/setup-java@v6
261261
with:
262262
distribution: temurin
263263
java-version: '17'
264264

265265
- name: Set up the Android SDK
266-
uses: android-actions/setup-android@v3
266+
uses: android-actions/setup-android@v4
267267
with:
268268
packages: 'tools platform-tools'
269269

270270
- name: Set up Gradle (with build cache)
271-
uses: gradle/actions/setup-gradle@v4
271+
uses: gradle/actions/setup-gradle@v6
272272
with:
273273
cache-read-only: ${{ github.ref != 'refs/heads/main' }}
274274
build-scan-publish: false
@@ -295,7 +295,7 @@ jobs:
295295
296296
- name: Upload the APK
297297
if: always()
298-
uses: actions/upload-artifact@v4
298+
uses: actions/upload-artifact@v7
299299
with:
300300
name: nxwarp-bench-debug-apk
301301
if-no-files-found: warn
@@ -305,7 +305,7 @@ jobs:
305305
306306
- name: Upload the Gradle reports on failure
307307
if: failure()
308-
uses: actions/upload-artifact@v4
308+
uses: actions/upload-artifact@v7
309309
with:
310310
name: bench-gradle-reports
311311
if-no-files-found: ignore
@@ -323,9 +323,9 @@ jobs:
323323
run:
324324
working-directory: tools/quality
325325
steps:
326-
- uses: actions/checkout@v4
326+
- uses: actions/checkout@v7
327327

328-
- uses: actions/setup-python@v5
328+
- uses: actions/setup-python@v7
329329
with:
330330
python-version: '3.12'
331331
cache: pip
@@ -353,7 +353,7 @@ jobs:
353353

354354
- name: Upload the pytest report
355355
if: always()
356-
uses: actions/upload-artifact@v4
356+
uses: actions/upload-artifact@v7
357357
with:
358358
name: pytest-report
359359
if-no-files-found: ignore

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ jobs:
3535
name: Build site
3636
runs-on: ubuntu-latest
3737
steps:
38-
- uses: actions/checkout@v4
38+
- uses: actions/checkout@v7
3939
with:
4040
fetch-depth: 0 # git-revision-date plugins need history if added later
4141

42-
- uses: actions/setup-python@v5
42+
- uses: actions/setup-python@v7
4343
with:
4444
python-version: "3.12"
4545
cache: pip
@@ -56,7 +56,7 @@ jobs:
5656

5757
- name: Upload artifact
5858
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
59-
uses: actions/upload-pages-artifact@v3
59+
uses: actions/upload-pages-artifact@v5
6060
with:
6161
path: site
6262

@@ -72,4 +72,4 @@ jobs:
7272
url: ${{ steps.deployment.outputs.page_url }}
7373
steps:
7474
- id: deployment
75-
uses: actions/deploy-pages@v4
75+
uses: actions/deploy-pages@v5

.github/workflows/format.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
# parallel; turn this into a hard gate once they have all had one format pass.
2323
continue-on-error: true
2424
steps:
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v7
2626

2727
- name: Install clang-format
2828
run: |
@@ -80,7 +80,7 @@ jobs:
8080
8181
- name: Upload the clang-format log
8282
if: always()
83-
uses: actions/upload-artifact@v4
83+
uses: actions/upload-artifact@v7
8484
with:
8585
name: clang-format-log
8686
if-no-files-found: ignore
@@ -97,9 +97,9 @@ jobs:
9797
# that flip costs nothing but the decision.
9898
continue-on-error: true
9999
steps:
100-
- uses: actions/checkout@v4
100+
- uses: actions/checkout@v7
101101

102-
- uses: actions/setup-python@v5
102+
- uses: actions/setup-python@v7
103103
with:
104104
python-version: '3.11'
105105

@@ -129,7 +129,7 @@ jobs:
129129
130130
- name: Upload the shader-lint log
131131
if: always()
132-
uses: actions/upload-artifact@v4
132+
uses: actions/upload-artifact@v7
133133
with:
134134
name: shader-lint-log
135135
if-no-files-found: ignore

.github/workflows/labels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ jobs:
3333
sync:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v4
36+
- uses: actions/checkout@v7
3737

3838
- name: Sync labels from .github/labels.yml
39-
uses: crazy-max/ghaction-github-labeler@v5
39+
uses: crazy-max/ghaction-github-labeler@v6
4040
with:
4141
github-token: ${{ secrets.GITHUB_TOKEN }}
4242
yaml-file: .github/labels.yml

.github/workflows/nightly.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fuzz: ${{ steps.d.outputs.fuzz }}
2727
quality: ${{ steps.d.outputs.quality }}
2828
steps:
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v7
3030
- id: d
3131
run: |
3232
set -eu
@@ -65,7 +65,7 @@ jobs:
6565
CC: clang
6666
CXX: clang++
6767
steps:
68-
- uses: actions/checkout@v4
68+
- uses: actions/checkout@v7
6969

7070
- name: Install clang and build tools
7171
run: |
@@ -152,7 +152,7 @@ jobs:
152152
153153
- name: Upload crashers and corpus
154154
if: always()
155-
uses: actions/upload-artifact@v4
155+
uses: actions/upload-artifact@v7
156156
with:
157157
name: fuzz-artifacts
158158
if-no-files-found: ignore
@@ -173,12 +173,12 @@ jobs:
173173
runs-on: ubuntu-latest
174174
timeout-minutes: 90
175175
steps:
176-
- uses: actions/checkout@v4
176+
- uses: actions/checkout@v7
177177

178178
- name: Point the harness scratch at the runner temp, never at the repo
179179
run: echo "NXQ_SCRATCH=${RUNNER_TEMP}/nxq-scratch" >> "$GITHUB_ENV"
180180

181-
- uses: actions/setup-python@v5
181+
- uses: actions/setup-python@v7
182182
with:
183183
python-version: '3.12'
184184
cache: pip
@@ -252,7 +252,7 @@ jobs:
252252
253253
- name: Upload the results
254254
if: always()
255-
uses: actions/upload-artifact@v4
255+
uses: actions/upload-artifact@v7
256256
with:
257257
name: quality-small
258258
if-no-files-found: ignore

.github/workflows/sanitizers.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
UBSAN_OPTIONS: print_stacktrace=1:halt_on_error=1
4545
ASAN_OPTIONS: detect_leaks=1:abort_on_error=0
4646
steps:
47-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v7
4848

4949
- name: Install the toolchain
5050
run: |
@@ -81,7 +81,7 @@ jobs:
8181
8282
- name: Upload the logs
8383
if: always()
84-
uses: actions/upload-artifact@v4
84+
uses: actions/upload-artifact@v7
8585
with:
8686
name: asan-ubsan-logs
8787
if-no-files-found: ignore
@@ -102,7 +102,7 @@ jobs:
102102
CXX: clang++
103103
TSAN_OPTIONS: halt_on_error=1:second_deadlock_stack=1
104104
steps:
105-
- uses: actions/checkout@v4
105+
- uses: actions/checkout@v7
106106

107107
- name: Install the toolchain
108108
run: |
@@ -137,7 +137,7 @@ jobs:
137137
138138
- name: Upload the logs
139139
if: always()
140-
uses: actions/upload-artifact@v4
140+
uses: actions/upload-artifact@v7
141141
with:
142142
name: tsan-logs
143143
if-no-files-found: ignore
@@ -158,7 +158,7 @@ jobs:
158158
CC: clang
159159
CXX: clang++
160160
steps:
161-
- uses: actions/checkout@v4
161+
- uses: actions/checkout@v7
162162

163163
- name: Install the toolchain
164164
run: |
@@ -203,7 +203,7 @@ jobs:
203203
204204
- name: Upload crashers
205205
if: always()
206-
uses: actions/upload-artifact@v4
206+
uses: actions/upload-artifact@v7
207207
with:
208208
name: fuzz-smoke-artifacts
209209
if-no-files-found: ignore

0 commit comments

Comments
 (0)