File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1010 permissions :
1111 actions : write # Required for deleting caches and artifacts
1212 steps :
13- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
13+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
1414 with :
1515 sparse-checkout : pr_cleanup
1616 - uses : ./pr_cleanup
Original file line number Diff line number Diff line change 88 pre-commit :
99 runs-on : github-ubuntu-latest-s
1010 steps :
11- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
11+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
1212 - uses : ./config-npm
1313 - uses : SonarSource/gh-action_pre-commit@2ddc0c7fdabce0adfaaa4075a17690972ed9961a # 1.2.0
1414 with :
Original file line number Diff line number Diff line change 1818 outputs :
1919 BUILD_NUMBER : ${{ steps.get_build_number.outputs.BUILD_NUMBER }}
2020 steps :
21- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
21+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
2222 with :
2323 sparse-checkout : get-build-number
2424 - uses : ./get-build-number
4848 id-token : write
4949 contents : read
5050 steps :
51- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
51+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
5252 with :
5353 sparse-checkout : get-build-number
5454 - uses : ./get-build-number
6868 id-token : write
6969 contents : read
7070 steps :
71- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
71+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
7272 with :
7373 sparse-checkout : get-build-number
7474 - uses : ./get-build-number
9191 env :
9292 BUILD_NUMBER : ${{ needs.test-build-number-generation.outputs.BUILD_NUMBER }}
9393 steps :
94- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
94+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
9595 with :
9696 sparse-checkout : get-build-number
9797 - uses : ./get-build-number
Original file line number Diff line number Diff line change 88 test-resources :
99 runs-on : github-ubuntu-latest-s
1010 steps :
11- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
11+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
1212 # Create test file and directory for cache
1313 - name : Create test file for cache
1414 run : |
1515 mkdir -p test-cache
1616 echo "Test content for cache" > test-cache/test.txt
1717
1818 - name : Save test cache
19- uses : actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4.3.0
19+ uses : actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4
2020 with :
2121 path : ./test-cache
2222 key : test-cache-${{ github.event.pull_request.number }}
2323
2424 - name : Create and upload test artifact
25- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
25+ uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
2626 with :
2727 name : test-artifact-${{ github.event.pull_request.number }}
2828 path : test-cache/test.txt
3434 permissions :
3535 actions : write # Required for cache/artifact operations
3636 steps :
37- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
37+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
3838 - name : Run PR cleanup
3939 uses : ./pr_cleanup
4040
Original file line number Diff line number Diff line change @@ -16,11 +16,11 @@ jobs:
1616 id-token : write
1717 contents : read
1818 steps :
19- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
19+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
2020 with :
2121 fetch-depth : 0
2222 - uses : ./config-npm
23- - uses : jdx/mise-action@5228313ee0372e111a38da051671ca30fc5a96db # v3.6.3
23+ - uses : jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
2424 with :
2525 version : 2026.3.7
2626 - name : Run ShellSpec tests
Original file line number Diff line number Diff line change 1212 id-token : write
1313 contents : read
1414 steps :
15- - uses : actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5 .0.1
15+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 .0.2
1616 - name : Run IRIS Analysis
1717 uses : SonarSource/unified-dogfooding-actions/run-iris@v1
1818 with :
Original file line number Diff line number Diff line change @@ -190,7 +190,7 @@ runs:
190190
191191 - name : Archive problems report
192192 if : always()
193- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
193+ uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
194194 with :
195195 name : problems-report-${{ inputs.job-identifier != '' && inputs.job-identifier || steps.uid.outputs.value }}
196196 path : build/reports/problems/problems-report.html
@@ -202,7 +202,7 @@ runs:
202202 github.event_name != 'pull_request' &&
203203 steps.build.outputs.deployed == 'true' &&
204204 (inputs.provenance-artifact-paths != '' || steps.build.outputs.artifact-paths != '') }}
205- uses : actions/attest-build-provenance@96278af6caaf10aea03fd8d33a09a777ca52d62f # v3.2 .0
205+ uses : actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1 .0
206206 with :
207207 subject-path : >-
208208 ${{ inputs.provenance-artifact-paths != '' && inputs.provenance-artifact-paths || steps.build.outputs.artifact-paths }}
Original file line number Diff line number Diff line change @@ -228,7 +228,7 @@ runs:
228228 if : |
229229 inputs.provenance == 'true' && github.event_name != 'pull_request' && steps.build.outputs.deployed == 'true' &&
230230 (inputs.provenance-artifact-paths != '' || steps.build.outputs.artifact-paths != '')
231- uses : actions/attest-build-provenance@96278af6caaf10aea03fd8d33a09a777ca52d62f # v3.2 .0
231+ uses : actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1 .0
232232 with :
233233 subject-path : >-
234234 ${{ inputs.provenance-artifact-paths != '' && inputs.provenance-artifact-paths || steps.build.outputs.artifact-paths }}
Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ runs:
121121 "Use \`disable-caching\` instead." >&2
122122 fi
123123
124- - uses : jdx/mise-action@5228313ee0372e111a38da051671ca30fc5a96db # v3.6.3
124+ - uses : jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
125125 with :
126126 version : 2026.3.7
127127
@@ -188,7 +188,7 @@ runs:
188188
189189 - name : Archive logs
190190 if : failure()
191- uses : actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
191+ uses : actions/upload-artifact@bbbca2ddaa5d8feaa63e36b76fdaad77386f024f # v7.0.0
192192 with :
193193 name : npm-logs-${{ inputs.job-identifier != '' && inputs.job-identifier || steps.uid.outputs.value }}
194194 path : ~/.npm/_logs/
@@ -200,7 +200,7 @@ runs:
200200 github.event_name != 'pull_request' &&
201201 steps.build.outputs.deployed == 'true' &&
202202 (inputs.provenance-artifact-paths != '' || steps.build.outputs.artifact-paths != '') }}
203- uses : actions/attest-build-provenance@96278af6caaf10aea03fd8d33a09a777ca52d62f # v3.2 .0
203+ uses : actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1 .0
204204 with :
205205 subject-path : >-
206206 ${{ inputs.provenance-artifact-paths != '' && inputs.provenance-artifact-paths || steps.build.outputs.artifact-paths }}
Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ runs:
117117 path : ${{ github.workspace }}/${{ inputs.poetry-cache-dir }}
118118 key : poetry-${{ runner.os }}-${{ hashFiles('poetry.lock') }}
119119 restore-keys : poetry-${{ runner.os }}-
120- - uses : jdx/mise-action@5228313ee0372e111a38da051671ca30fc5a96db # v3.6.3
120+ - uses : jdx/mise-action@1648a7812b9aeae629881980618f079932869151 # v4.0.1
121121 with :
122122 version : 2026.3.7
123123 - uses : SonarSource/vault-action-wrapper@c154b4a417b51cb98dd71137f49bf20e77c56820 # 3.4.0
@@ -179,7 +179,7 @@ runs:
179179 github.event_name != 'pull_request' &&
180180 steps.build.outputs.deployed == 'true' &&
181181 (inputs.provenance-artifact-paths != '' || steps.build.outputs.artifact-paths != '') }}
182- uses : actions/attest-build-provenance@96278af6caaf10aea03fd8d33a09a777ca52d62f # v3.2 .0
182+ uses : actions/attest-build-provenance@a2bbfa25375fe432b6a289bc6b6cd05ecd0c4c32 # v4.1 .0
183183 with :
184184 subject-path : >-
185185 ${{ inputs.provenance-artifact-paths != '' && inputs.provenance-artifact-paths || steps.build.outputs.artifact-paths }}
You can’t perform that action at this time.
0 commit comments