Skip to content

Commit e178696

Browse files
Bump the GitHub actions (#984)
- Updates `actions/upload-artifact` from 4.6.2 to 5.0.0 - Updates `github/codeql-action` from 4.30.9 to 4.31.0 - Updates `actions/download-artifact` from 5.0.0 to 6.0.0 Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ad396cf commit e178696

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

.github/workflows/build-docs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Generate documentation
1818
run: make generate-docs-node
1919
- name: Upload documentation
20-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
20+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
2121
with:
2222
name: node-doc
2323
path: node/apidocs/
@@ -35,7 +35,7 @@ jobs:
3535
- name: Generate JavaDoc
3636
run: make generate-docs-java
3737
- name: Upload JavaDoc
38-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
38+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
3939
with:
4040
name: java-doc
4141
path: java/target/reports/apidocs/
@@ -51,7 +51,7 @@ jobs:
5151
- name: Generate documentation site
5252
run: make generate-docs
5353
- name: Upload documentation site
54-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
54+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5555
with:
5656
name: site-doc
5757
path: site/

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ jobs:
4040
- name: Checkout repository
4141
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
4242
- name: Initialize CodeQL
43-
uses: github/codeql-action/init@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
43+
uses: github/codeql-action/init@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
4444
with:
4545
languages: ${{ matrix.language }}
4646
- name: Autobuild
47-
uses: github/codeql-action/autobuild@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
47+
uses: github/codeql-action/autobuild@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
4848
env:
4949
GOFLAGS: "-tags=pkcs11"
5050
with:
5151
working-directory: ${{ matrix.working-directory || '' }}
5252
- name: Perform CodeQL Analysis
53-
uses: github/codeql-action/analyze@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
53+
uses: github/codeql-action/analyze@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0

.github/workflows/push.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Download site
37-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
37+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
3838
with:
3939
name: site-doc
4040
- name: Download JavaDoc
41-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
41+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4242
with:
4343
name: java-doc
4444
path: ${{ github.ref_name }}/api/java
4545
- name: Download Node documentation
46-
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
46+
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
4747
with:
4848
name: node-doc
4949
path: ${{ github.ref_name }}/api/node

.github/workflows/scorecard.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
5555
# format to the repository Actions tab.
5656
- name: "Upload artifact"
57-
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
57+
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
5858
with:
5959
name: SARIF file
6060
path: results.sarif
@@ -63,6 +63,6 @@ jobs:
6363
# Upload the results to GitHub's code scanning dashboard (optional).
6464
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
6565
- name: "Upload to code-scanning"
66-
uses: github/codeql-action/upload-sarif@16140ae1a102900babc80a33c44059580f687047 # v4.30.9
66+
uses: github/codeql-action/upload-sarif@4e94bd11f71e507f7f87df81788dff88d1dacbfb # v4.31.0
6767
with:
6868
sarif_file: results.sarif

0 commit comments

Comments
 (0)