Skip to content

Commit 6e581e7

Browse files
Bump the github-actions group across 1 directory with 5 updates
Bumps the github-actions group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/upload-artifact](https://github.com/actions/upload-artifact) | `4` | `5` | | [actions/download-artifact](https://github.com/actions/download-artifact) | `5` | `6` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) | `6` | `8` | | [actions/setup-node](https://github.com/actions/setup-node) | `5` | `6` | Updates `actions/upload-artifact` from 4 to 5 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v5) Updates `actions/download-artifact` from 5 to 6 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v5...v6) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `golangci/golangci-lint-action` from 6 to 8 - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v6...v8) Updates `actions/setup-node` from 5 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v5...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: golangci/golangci-lint-action dependency-version: '8' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 610f8a0 commit 6e581e7

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363
./run.sh
6464
6565
- name: Upload benchmark
66-
uses: actions/upload-artifact@v4
66+
uses: actions/upload-artifact@v5
6767
with:
6868
name: ${{matrix.project}}_${{matrix.parallel}}
6969
path: gauge-benchmarks/out
@@ -86,7 +86,7 @@ jobs:
8686
ref: master
8787

8888
- name: Download benchmark results
89-
uses: actions/download-artifact@v5
89+
uses: actions/download-artifact@v6
9090
with:
9191
path: gauge-benchmarks/out/
9292

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,15 @@ jobs:
3232

3333
# Initializes the CodeQL tools for scanning.
3434
- name: Initialize CodeQL
35-
uses: github/codeql-action/init@v3
35+
uses: github/codeql-action/init@v4
3636
# Override language selection by uncommenting this and choosing your languages
3737
# with:
3838
# languages: go, javascript, csharp, python, cpp, java
3939

4040
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
4141
# If this step fails, then you should remove it and run the build manually (see below)
4242
- name: Autobuild
43-
uses: github/codeql-action/autobuild@v3
43+
uses: github/codeql-action/autobuild@v4
4444

4545
# ℹ️ Command-line programs to run using the OS shell.
4646
# 📚 https://git.io/JvXDl
@@ -54,4 +54,4 @@ jobs:
5454
# make release
5555

5656
- name: Perform CodeQL Analysis
57-
uses: github/codeql-action/analyze@v3
57+
uses: github/codeql-action/analyze@v4

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
check-latest: true
2626
go-version-file: 'go.mod'
2727
- name: golangci-lint
28-
uses: golangci/golangci-lint-action@v6
28+
uses: golangci/golangci-lint-action@v8
2929
with:
3030
args: --timeout=10m
3131
# with:

.github/workflows/release.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
go run build/make.go --distro --all-platforms --skip-windows
2727
2828
- name: Upload artifacts
29-
uses: actions/upload-artifact@v4
29+
uses: actions/upload-artifact@v5
3030
with:
3131
name: gauge-non-windows-artifact
3232
path: ./deploy
@@ -63,7 +63,7 @@ jobs:
6363
go run build/make.go --distro --bin-dir bin\windows_386
6464
6565
- name: Upload artifacts
66-
uses: actions/upload-artifact@v4
66+
uses: actions/upload-artifact@v5
6767
with:
6868
name: gauge-windows-artifact
6969
path: ./deploy
@@ -77,7 +77,7 @@ jobs:
7777
steps:
7878
- uses: actions/checkout@v5
7979

80-
- uses: actions/download-artifact@v5
80+
- uses: actions/download-artifact@v6
8181
with:
8282
name: gauge-non-windows-artifact
8383
path: ./deploy
@@ -93,7 +93,7 @@ jobs:
9393
echo $version > ../version.txt
9494
9595
- name: upload gauge version
96-
uses: actions/upload-artifact@v4
96+
uses: actions/upload-artifact@v5
9797
with:
9898
name: gauge-version
9999
path: ./version.txt
@@ -106,18 +106,18 @@ jobs:
106106
steps:
107107
- uses: actions/checkout@v5
108108

109-
- uses: actions/download-artifact@v5
109+
- uses: actions/download-artifact@v6
110110
with:
111111
name: gauge-non-windows-artifact
112112
path: ./deploy
113113

114-
- uses: actions/download-artifact@v5
114+
- uses: actions/download-artifact@v6
115115
with:
116116
name: gauge-windows-artifact
117117
path: ./deploy
118118

119119
- name: Fetch gauge version
120-
uses: actions/download-artifact@v5
120+
uses: actions/download-artifact@v6
121121
with:
122122
name: gauge-version
123123
path: .
@@ -152,7 +152,7 @@ jobs:
152152
cache: 'pip' # caching pip dependencies
153153

154154
- name: Fetch gauge version
155-
uses: actions/download-artifact@v5
155+
uses: actions/download-artifact@v6
156156
with:
157157
name: gauge-version
158158
path: .
@@ -178,15 +178,15 @@ jobs:
178178
- uses: actions/checkout@v5
179179
- run: git fetch --prune --unshallow
180180

181-
- uses: actions/setup-node@v5
181+
- uses: actions/setup-node@v6
182182
with:
183183
node-version: 22
184184
cache: 'npm'
185185
cache-dependency-path: 'build/npm/package-lock.json'
186186
registry-url: 'https://registry.npmjs.org'
187187

188188
- name: Fetch gauge version
189-
uses: actions/download-artifact@v5
189+
uses: actions/download-artifact@v6
190190
with:
191191
name: gauge-version
192192
path: .
@@ -215,12 +215,12 @@ jobs:
215215
- run: git fetch --prune --unshallow
216216

217217
- name: Fetch gauge version
218-
uses: actions/download-artifact@v5
218+
uses: actions/download-artifact@v6
219219
with:
220220
name: gauge-version
221221
path: .
222222

223-
- uses: actions/download-artifact@v5
223+
- uses: actions/download-artifact@v6
224224
with:
225225
name: gauge-windows-artifact
226226
path: ./deploy

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
check-latest: true
4343
go-version-file: 'go.mod'
4444
- name: Set up Nodejs
45-
uses: actions/setup-node@v5
45+
uses: actions/setup-node@v6
4646
with:
4747
node-version: 22
4848
cache: 'npm'
@@ -185,7 +185,7 @@ jobs:
185185
./gradlew clean jsFT
186186
187187
- name: Upload logs
188-
uses: actions/upload-artifact@v4
188+
uses: actions/upload-artifact@v5
189189
if: failure()
190190
with:
191191
name: ft-logs-${{ matrix.os }}
@@ -223,7 +223,7 @@ jobs:
223223
run: go run build/make.go && go run build/make.go --distro
224224

225225
- name: Upload artifacts for ${{ matrix.os }}
226-
uses: actions/upload-artifact@v4
226+
uses: actions/upload-artifact@v5
227227
with:
228228
name: gauge-artifact-for-${{ matrix.os }}
229229
path: deploy
@@ -283,7 +283,7 @@ jobs:
283283
./run.sh
284284
285285
- name: Upload benchmark
286-
uses: actions/upload-artifact@v4
286+
uses: actions/upload-artifact@v5
287287
with:
288288
name: ${{matrix.project}}_${{matrix.parallel}}
289289
path: gauge-benchmarks/out
@@ -302,7 +302,7 @@ jobs:
302302
path: gauge-benchmarks
303303
ref: master
304304
- name: Download benchmark results
305-
uses: actions/download-artifact@v5
305+
uses: actions/download-artifact@v6
306306
with:
307307
path: gauge-benchmarks/out/
308308
- name: Generate Comment String
@@ -311,7 +311,7 @@ jobs:
311311
cd gauge-benchmarks
312312
./generate_summary.sh > out/results.md
313313
- name: Publish Benchmark Result
314-
uses: actions/upload-artifact@v4
314+
uses: actions/upload-artifact@v5
315315
with:
316316
name: benchmark
317317
path: gauge-benchmarks/out/results.md

0 commit comments

Comments
 (0)