3232 continue-on-error : ${{ matrix.rust == 'beta' }}
3333 steps :
3434 - name : Harden the runner (Audit all outbound calls)
35- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
35+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
3636 with :
3737 egress-policy : audit
3838
5454 runs-on : ubuntu-latest
5555 steps :
5656 - name : Harden the runner (Audit all outbound calls)
57- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
57+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
5858 with :
5959 egress-policy : audit
6060
6565 with :
6666 toolchain : stable
6767 components : rustfmt, clippy
68- - uses : taiki-e/install-action@d31232495ad76f47aad66e3501e47780b49f0f3e # v2.57.5
68+ - uses : taiki-e/install-action@d6d752794628f1e1fffa3c4d3c8874e06f043d50 # v2.62.15
6969 with :
7070 tool : cargo-hack
7171 - uses : arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3.0.0
8282 runs-on : ubuntu-latest # TODO: Check if this could be covered for Windows. The step used currently fails on Windows.
8383 steps :
8484 - name : Harden the runner (Audit all outbound calls)
85- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
85+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
8686 with :
8787 egress-policy : audit
8888
9393 # https://github.com/awslabs/cargo-check-external-types/releases
9494 toolchain : nightly-2025-05-04
9595 components : rustfmt
96- - uses : taiki-e/install-action@d31232495ad76f47aad66e3501e47780b49f0f3e # v2.57.5
96+ - uses : taiki-e/install-action@d6d752794628f1e1fffa3c4d3c8874e06f043d50 # v2.62.15
9797 with :
98989999 - name : external-type-check
@@ -107,7 +107,7 @@ jobs:
107107 continue-on-error : true
108108 steps :
109109 - name : Harden the runner (Audit all outbound calls)
110- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
110+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
111111 with :
112112 egress-policy : audit
113113
@@ -117,7 +117,7 @@ jobs:
117117 - uses : dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9
118118 with :
119119 toolchain : stable
120- - uses : taiki-e/install-action@d31232495ad76f47aad66e3501e47780b49f0f3e # v2.57.5
120+ - uses : taiki-e/install-action@d6d752794628f1e1fffa3c4d3c8874e06f043d50 # v2.62.15
121121 with :
122122 tool : cargo-msrv
123123 - uses : arduino/setup-protoc@c65c819552d16ad3c9b72d9dfd5ba5237b9c906b # v3.0.0
@@ -130,7 +130,7 @@ jobs:
130130 continue-on-error : true # Prevent sudden announcement of a new advisory from failing ci
131131 steps :
132132 - name : Harden the runner (Audit all outbound calls)
133- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
133+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
134134 with :
135135 egress-policy : audit
136136
@@ -161,7 +161,7 @@ jobs:
161161 runs-on : ubuntu-latest
162162 steps :
163163 - name : Harden the runner (Audit all outbound calls)
164- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
164+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
165165 with :
166166 egress-policy : audit
167167
@@ -184,7 +184,7 @@ jobs:
184184 if : ${{ ! contains(github.event.pull_request.labels.*.name, 'dependencies') }}
185185 steps :
186186 - name : Harden the runner (Audit all outbound calls)
187- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
187+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
188188 with :
189189 egress-policy : audit
190190
@@ -199,7 +199,7 @@ jobs:
199199 with :
200200 repo-token : ${{ secrets.GITHUB_TOKEN }}
201201 - name : Install cargo-llvm-cov
202- uses : taiki-e/install-action@d31232495ad76f47aad66e3501e47780b49f0f3e # v2.57.5
202+ uses : taiki-e/install-action@d6d752794628f1e1fffa3c4d3c8874e06f043d50 # v2.62.15
203203 with :
204204 tool : cargo-llvm-cov
205205 - name : cargo generate-lockfile
@@ -208,7 +208,7 @@ jobs:
208208 - name : cargo llvm-cov
209209 run : cargo llvm-cov --locked --all-features --workspace --lcov --lib --output-path lcov.info
210210 - name : Upload to codecov.io
211- uses : codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
211+ uses : codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
212212 env :
213213 CODECOV_TOKEN : ${{ secrets.CODECOV_TOKEN }}
214214 with :
@@ -237,7 +237,7 @@ jobs:
237237 runs-on : ubuntu-latest
238238 steps :
239239 - name : Harden the runner (Audit all outbound calls)
240- uses : step-security/harden-runner@ec9f2d5744a09debf3a187a3f4f675c53b671911 # v2.13.0
240+ uses : step-security/harden-runner@f4a75cfd619ee5ce8d5b864b0d183aff3c69b55a # v2.13.1
241241 with :
242242 egress-policy : audit
243243
@@ -247,7 +247,7 @@ jobs:
247247 - uses : dtolnay/rust-toolchain@e97e2d8cc328f1b50210efc529dca0028893a2d9
248248 with :
249249 toolchain : stable
250- - uses : taiki-e/install-action@d31232495ad76f47aad66e3501e47780b49f0f3e # v2.57.5
250+ - uses : taiki-e/install-action@d6d752794628f1e1fffa3c4d3c8874e06f043d50 # v2.62.15
251251 with :
252252 tool : cargo-machete
253253 - name : cargo machete
0 commit comments