Skip to content

Commit 9553f2e

Browse files
dependabot[bot]Zxilly
authored andcommitted
build(deps): bump the actions-deps group with 3 updates
Bumps the actions-deps group with 3 updates: [actions/upload-artifact](https://github.com/actions/upload-artifact), [actions/download-artifact](https://github.com/actions/download-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@ea165f8...330a01c) Updates `actions/download-artifact` from 5.0.0 to 6.0.0 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@634f93c...018cc2c) Updates `github/codeql-action` from 4.30.9 to 4.31.0 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@16140ae...4e94bd1) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: actions/download-artifact dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: actions-deps - dependency-name: github/codeql-action dependency-version: 4.31.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions-deps ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent cb7511b commit 9553f2e

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

.github/workflows/build-webui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
prerelease: true
4949

5050
- name: Upload artifact
51-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
51+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5252
with:
5353
name: ui
5454
path: 'ui/dist/webui/index.html'

.github/workflows/built-tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
script: 'wasm.py'
5454

5555
- name: Upload wasm artifact
56-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
56+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5757
with:
5858
path: 'ui/gsa.wasm'
5959
name: wasm
@@ -97,7 +97,7 @@ jobs:
9797
go install github.com/Zxilly/go_js_wasm_exec@149a70ce858641392338293a05ba15b00585860e
9898
9999
- name: Download UI file
100-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
100+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
101101
with:
102102
name: ui
103103
path: internal/webui
@@ -138,7 +138,7 @@ jobs:
138138
verbose: true
139139

140140
- name: Upload results
141-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
141+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
142142
if: ${{ !cancelled() }}
143143
with:
144144
name: ${{ matrix.os }}-${{ matrix.test }}-results
@@ -156,7 +156,7 @@ jobs:
156156
os: [ ubuntu-24.04, ubuntu-24.04-arm, windows-latest, macos-13, macos-14, self-hosted ]
157157
steps:
158158
- name: Merge
159-
uses: actions/upload-artifact/merge@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
159+
uses: actions/upload-artifact/merge@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
160160
with:
161161
name: ${{ matrix.os }}-results
162162
compression-level: '9'
@@ -198,7 +198,7 @@ jobs:
198198
run: pnpm install
199199

200200
- name: Download WASM
201-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
201+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
202202
with:
203203
name: wasm
204204
path: ui/
@@ -243,7 +243,7 @@ jobs:
243243
uses: ./.github/actions/setup-ui-deps
244244

245245
- name: Download WASM
246-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
246+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
247247
with:
248248
name: wasm
249249
path: ui/

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ jobs:
5252
check-latest: true
5353

5454
- name: Initialize CodeQL
55-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
55+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
5656
with:
5757
languages: ${{ matrix.language }}
5858
build-mode: ${{ matrix.build-mode }}
5959

6060
- name: Perform CodeQL Analysis
61-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
61+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
6262
with:
6363
category: "/language:${{matrix.language}}"

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
continue-on-error: true
3838

3939
- name: Upload analysis results to GitHub
40-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
40+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
4141
with:
4242
sarif_file: ./ui/eslint-results.sarif
4343
wait-for-processing: true
@@ -68,7 +68,7 @@ jobs:
6868
continue-on-error: true
6969

7070
- name: Upload analysis results to GitHub
71-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
71+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
7272
with:
7373
sarif_file: ./golangci-lint-results.sarif
7474
wait-for-processing: true

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
check-latest: true
4444

4545
- name: Download UI file
46-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
46+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4747
with:
4848
name: ui
4949
path: internal/webui

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ jobs:
3030
publish_results: true
3131

3232
- name: "Upload artifact"
33-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
33+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
3434
with:
3535
name: SARIF file
3636
path: results.sarif
3737
retention-days: 5
3838

3939
- name: "Upload to code-scanning"
40-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v3.29.5
40+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v3.29.5
4141
with:
4242
sarif_file: results.sarif

0 commit comments

Comments
 (0)