Skip to content

Commit ea659f6

Browse files
committed
chore(deps): update workflows
1 parent 7ffff72 commit ea659f6

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

.github/workflows/codeql-analysis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
go-version-file: go.mod
4949
# Initializes the CodeQL tools for scanning.
5050
- name: Initialize CodeQL
51-
uses: github/codeql-action/init@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
51+
uses: github/codeql-action/init@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
5252
with:
5353
languages: ${{ matrix.language }}
5454
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -59,7 +59,7 @@ jobs:
5959
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
6060
# If this step fails, then you should remove it and run the build manually (see below)
6161
- name: Autobuild
62-
uses: github/codeql-action/autobuild@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
62+
uses: github/codeql-action/autobuild@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
6363

6464
# ℹ️ Command-line programs to run using the OS shell.
6565
# 📚 https://git.io/JvXDl
@@ -73,4 +73,4 @@ jobs:
7373
# make release
7474

7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
76+
uses: github/codeql-action/analyze@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0

.github/workflows/osv-scanner-reusable-pr.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -83,28 +83,28 @@ jobs:
8383
# format to the repository Actions tab.
8484
- name: "Upload artifact"
8585
if: "!cancelled()"
86-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
86+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
8787
with:
8888
name: SARIF file
8989
path: ${{ inputs.results-file-name }}
9090
retention-days: 5
9191
- name: "Upload old scan json results"
9292
if: "!cancelled()"
93-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
93+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
9494
with:
9595
name: old-json-results
9696
path: old-results.json
9797
retention-days: 5
9898
- name: "Upload new scan json results"
9999
if: "!cancelled()"
100-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
100+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
101101
with:
102102
name: new-json-results
103103
path: new-results.json
104104
retention-days: 5
105105
# Upload the results to GitHub's code scanning dashboard.
106106
- name: "Upload to code-scanning"
107107
if: ${{ !cancelled() && inputs.upload-sarif == true }}
108-
uses: github/codeql-action/upload-sarif@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
108+
uses: github/codeql-action/upload-sarif@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
109109
with:
110110
sarif_file: ${{ inputs.results-file-name }}

.github/workflows/osv-scanner-reusable.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ jobs:
8080
# format to the repository Actions tab.
8181
- name: "Upload artifact"
8282
if: "!cancelled()"
83-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
83+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
8484
with:
8585
name: SARIF file
8686
path: ${{ inputs.results-file-name }}
8787
retention-days: 5
8888
# Upload the results to GitHub's code scanning dashboard.
8989
- name: "Upload to code-scanning"
9090
if: "${{ !cancelled() && inputs.upload-sarif == true }}"
91-
uses: github/codeql-action/upload-sarif@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
91+
uses: github/codeql-action/upload-sarif@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
9292
with:
9393
sarif_file: ${{ inputs.results-file-name }}

.github/workflows/scorecards.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ jobs:
5959
# Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF
6060
# format to the repository Actions tab.
6161
- name: "Upload artifact"
62-
uses: actions/upload-artifact@694cdabd8bdb0f10b2cea11669e1bf5453eed0a6 # v4.2.0
62+
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
6363
with:
6464
name: SARIF file
6565
path: results.sarif
6666
retention-days: 5
6767

6868
# Upload the results to GitHub's code scanning dashboard.
6969
- name: "Upload to code-scanning"
70-
uses: github/codeql-action/upload-sarif@0b21cf2492b6b02c465a3e5d7c473717ad7721ba # v3.23.1
70+
uses: github/codeql-action/upload-sarif@e8893c57a1f3a2b659b6b55564fdfdbbd2982911 # v3.24.0
7171
with:
7272
sarif_file: results.sarif

.github/workflows/test-action/action.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ runs:
2424
TEST_ACCEPTANCE: true
2525
run: ./scripts/run_tests.sh
2626
- name: Upload coverage to Codecov
27-
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d # v3.1.4
27+
uses: codecov/codecov-action@ab904c41d6ece82784817410c45d8b8c02684457 # v3.1.6

0 commit comments

Comments
 (0)