File tree Expand file tree Collapse file tree 7 files changed +12
-12
lines changed
Expand file tree Collapse file tree 7 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 4747
4848 # Initializes the CodeQL tools for scanning.
4949 - name : Initialize CodeQL
50- uses : github/codeql-action/init@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
50+ uses : github/codeql-action/init@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
5151 with :
5252 languages : ${{ matrix.language }}
5353 # If you wish to specify custom queries, you can do so here or in a config file.
5858 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5959 # If this step fails, then you should remove it and run the build manually (see below)
6060 - name : Autobuild
61- uses : github/codeql-action/autobuild@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
61+ uses : github/codeql-action/autobuild@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
6262
6363 # ℹ️ Command-line programs to run using the OS shell.
6464 # 📚 https://git.io/JvXDl
6868 # uses a compiled language
6969
7070 - name : Perform CodeQL Analysis
71- uses : github/codeql-action/analyze@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
71+ uses : github/codeql-action/analyze@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ jobs:
247247 # --------------------------------------------------------------------
248248 - name : 💾 Cache golangci-lint analysis
249249 id : cache-golangci-lint
250- uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
250+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
251251 with :
252252 path : ${{ env.GOLANGCI_LINT_CACHE }}
253253 key : ${{ inputs.primary-runner }}-golangci-lint-analysis-${{ hashFiles('.golangci.json', env.GO_SUM_FILE) }}-${{ steps.golangci-lint-version.outputs.version }}
Original file line number Diff line number Diff line change @@ -193,7 +193,7 @@ jobs:
193193 - name : 💾 Restore go-coverage binary cache (production)
194194 id : go-coverage-cache
195195 if : env.GO_COVERAGE_USE_LOCAL != 'true'
196- uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
196+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
197197 with :
198198 path : |
199199 ~/.cache/go-coverage-bin
@@ -204,7 +204,7 @@ jobs:
204204 - name : 💾 Restore go-coverage binary cache (local)
205205 id : go-coverage-local-cache
206206 if : env.GO_COVERAGE_USE_LOCAL == 'true'
207- uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
207+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
208208 with :
209209 path : |
210210 ~/.cache/go-coverage-local
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ jobs:
108108 # --------------------------------------------------------------------
109109 - name : 💾 Restore golangci-lint analysis cache
110110 id : cache-golangci-lint-analysis
111- uses : actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
111+ uses : actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
112112 with :
113113 path : ${{ env.GOLANGCI_LINT_CACHE }}
114114 key : ${{ inputs.primary-runner }}-golangci-lint-analysis-${{ hashFiles('.golangci.json', env.GO_SUM_FILE) }}-${{ env.GO_PRE_COMMIT_GOLANGCI_LINT_VERSION }}
@@ -123,7 +123,7 @@ jobs:
123123 - name : 💾 Restore go-pre-commit binary cache
124124 id : go-pre-commit-cache
125125 if : env.GO_PRE_COMMIT_USE_LOCAL != 'true'
126- uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
126+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
127127 with :
128128 path : |
129129 ~/.cache/go-pre-commit-bin
@@ -135,7 +135,7 @@ jobs:
135135 # --------------------------------------------------------------------
136136 - name : 💾 Restore go-pre-commit tools cache
137137 id : go-pre-commit-tools-cache
138- uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
138+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
139139 with :
140140 path : |
141141 ~/.cache/go-pre-commit-tools
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ jobs:
172172 # --------------------------------------------------------------------
173173 - name : 💾 Cache golangci-lint analysis
174174 id : cache-golangci-lint
175- uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
175+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
176176 with :
177177 path : ${{ env.GOLANGCI_LINT_CACHE }}
178178 key : ${{ inputs.primary-runner }}-golangci-lint-analysis-${{ hashFiles('.golangci.json', env.GO_SUM_FILE) }}-${{ inputs.golangci-lint-version }}
Original file line number Diff line number Diff line change @@ -238,7 +238,7 @@ jobs:
238238 # --------------------------------------------------------------------
239239 - name : 💾 Restore govulncheck binary cache
240240 id : govuln-cache
241- uses : actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4.2.4
241+ uses : actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
242242 with :
243243 path : |
244244 ~/.cache/govulncheck-bin
Original file line number Diff line number Diff line change 7878 # Upload the results to GitHub's code scanning dashboard (optional).
7979 # Commenting out will disable the upload of results to your repo's Code Scanning dashboard
8080 - name : " Upload to code-scanning"
81- uses : github/codeql-action/upload-sarif@192325c86100d080feab897ff886c34abd4c83a3 # v3.29.5
81+ uses : github/codeql-action/upload-sarif@3599b3baa15b485a2e49ef411a7a4bb2452e7f93 # v3.29.5
8282 with :
8383 sarif_file : results.sarif
You can’t perform that action at this time.
0 commit comments