@@ -9,7 +9,7 @@ defaults:
99
1010env :
1111 # renovate: datasource=pypi depName=zizmor
12- ZIZMOR_VERSION : 1.19 .0
12+ ZIZMOR_VERSION : 1.22 .0
1313
1414on :
1515 workflow_call :
@@ -69,12 +69,12 @@ jobs:
6969 pull-requests : write
7070 steps :
7171 - name : Harden Runner
72- uses : step-security/harden-runner@20cf305ff2072d973412fa9b1e3a4f227bda3c76 # v2.14.0
72+ uses : step-security/harden-runner@e3f713f2d8f53843e71c69a996d56f51aa9adfb9 # v2.14.1
7373 with :
7474 egress-policy : audit # change to 'egress-policy: block' after couple of runs
7575
7676 - name : Checkout Code
77- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
77+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7878 with :
7979 persist-credentials : false
8080
8383 id : ml
8484 # You can override MegaLinter flavor used to have faster performances
8585 # More info at https://megalinter.io/latest/flavors/
86- uses : oxsecurity/megalinter@55a59b24a441e0e1943080d4a512d827710d4a9d # v9.2 .0
86+ uses : oxsecurity/megalinter@42bb470545e359597e7f12156947c436e4e3fb9a # v9.3 .0
8787 env :
8888 VALIDATE_ALL_CODEBASE : " true"
8989 # only try to post PR comments if it's not a fork
@@ -103,7 +103,7 @@ jobs:
103103
104104 - name : Upload MegaLinter scan results to GitHub Security tab
105105 if : ${{ always() }}
106- uses : github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
106+ uses : github/codeql-action/upload-sarif@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
107107 with :
108108 sarif_file : " megalinter-reports/megalinter-report.sarif"
109109
@@ -117,7 +117,7 @@ jobs:
117117 contents : read
118118 steps :
119119 - name : Checkout Code
120- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
120+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
121121 with :
122122 persist-credentials : false
123123 - name : Dependency Review
@@ -131,11 +131,11 @@ jobs:
131131 contents : read
132132 steps :
133133 - name : Checkout Code
134- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
134+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
135135 with :
136136 persist-credentials : false
137137 - name : Validate Gradle Wrapper
138- uses : gradle/actions/wrapper-validation@4d9f0ba0025fe599b4ebab900eb7f3a1d93ef4c2 # v5.0.0
138+ uses : gradle/actions/wrapper-validation@f29f5a9d7b09a7c6b29859002d29d24e1674c884 # v5.0.1
139139
140140 base-image-signature-verification :
141141 name : verify Dockerfile base image signature
@@ -145,7 +145,7 @@ jobs:
145145 contents : read
146146 steps :
147147 - name : Checkout Code
148- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
148+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
149149 with :
150150 fetch-depth : 1
151151 persist-credentials : false
@@ -176,27 +176,27 @@ jobs:
176176 language : ${{ fromJSON(inputs.codeql-languages) }}
177177 steps :
178178 - name : Checkout Code
179- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
179+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
180180 with :
181181 persist-credentials : false
182182
183183 - name : Set up Java
184184 if : ${{ matrix.language == 'java' }}
185- uses : actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5.1 .0
185+ uses : actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2 .0
186186 with :
187187 java-version : ${{ inputs.java-version }}
188188 distribution : " temurin"
189189 cache : gradle
190190
191191 - name : Set up .NET
192192 if : ${{ matrix.language == 'csharp' }}
193- uses : actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # v5.0.1
193+ uses : actions/setup-dotnet@baa11fbfe1d6520db94683bd5c7a3818018e4309 # v5.1.0
194194 with :
195195 dotnet-version : ${{ inputs.dotnet-version }}
196196
197197 # Initializes the CodeQL tools for scanning.
198198 - name : Initialize CodeQL
199- uses : github/codeql-action/init@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
199+ uses : github/codeql-action/init@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
200200 with :
201201 languages : ${{ matrix.language }}
202202 # If you wish to specify custom queries, you can do so here or in a config file.
@@ -209,7 +209,7 @@ jobs:
209209 # Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
210210 # If this step fails, then you should remove it and run the build manually (see below)
211211 - name : Autobuild
212- uses : github/codeql-action/autobuild@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
212+ uses : github/codeql-action/autobuild@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
213213
214214 # ℹ️ Command-line programs to run using the OS shell.
215215 # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -222,7 +222,7 @@ jobs:
222222 # ./location_of_script_within_repo/buildscript.sh
223223
224224 - name : Perform CodeQL Analysis
225- uses : github/codeql-action/analyze@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
225+ uses : github/codeql-action/analyze@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
226226 with :
227227 category : " /language:${{matrix.language}}"
228228
@@ -236,12 +236,12 @@ jobs:
236236 actions : read
237237 steps :
238238 - name : Checkout Code
239- uses : actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
239+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
240240 with :
241241 persist-credentials : false
242242
243243 - name : Install the latest version of uv
244- uses : astral-sh/setup-uv@681c641aba71e4a1c380be3ab5e12ad51f415867 # v7.1.6
244+ uses : astral-sh/setup-uv@61cb8a9741eeb8a550a1b8544337180c0fc8476b # v7.2.0
245245 with :
246246 enable-cache : false
247247
@@ -264,7 +264,7 @@ jobs:
264264 ZIZMOR_CONFIG : /tmp/zizmor-standard-lint-defaults.yaml
265265
266266 - name : Upload SARIF file
267- uses : github/codeql-action/upload-sarif@5d4e8d1aca955e8d8589aabd499c5cae939e33c7 # v4.31.9
267+ uses : github/codeql-action/upload-sarif@b20883b0cd1f46c72ae0ba6d1090936928f9fa30 # v4.32.0
268268 with :
269269 sarif_file : results.sarif
270270 category : zizmor
0 commit comments