@@ -19,13 +19,13 @@ jobs:
1919 permissions :
2020 contents : read
2121 steps :
22- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
22+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2323 with :
2424 persist-credentials : false
2525
2626 - name : Install Rust
2727 run : rustup toolchain install stable --profile minimal -c rustfmt -c clippy
28- - uses : Swatinem/rust-cache@ad397744b0d591a723ab90405b7247fac0e6b8db # v2
28+ - uses : Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
2929
3030 - uses : ./.github/actions/install-tools
3131 with :
@@ -51,13 +51,13 @@ jobs:
5151 matrix :
5252 rust : ["1.86", stable]
5353 steps :
54- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
54+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
5555 with :
5656 persist-credentials : false
5757
5858 - name : Install Rust
5959 run : rustup toolchain install ${{ matrix.rust }} --profile minimal && rustup default ${{ matrix.rust }}
60- - uses : Swatinem/rust-cache@ad397744b0d591a723ab90405b7247fac0e6b8db # v2
60+ - uses : Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
6161
6262 - uses : ./.github/actions/install-tools
6363 with :
@@ -75,13 +75,13 @@ jobs:
7575 matrix :
7676 rust : ["1.86", stable]
7777 steps :
78- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
78+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
7979 with :
8080 persist-credentials : false
8181
8282 - name : Install Rust
8383 run : rustup toolchain install ${{ matrix.rust }} --profile minimal && rustup default ${{ matrix.rust }}
84- - uses : Swatinem/rust-cache@ad397744b0d591a723ab90405b7247fac0e6b8db # v2
84+ - uses : Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
8585
8686 - uses : ./.github/actions/install-tools
8787 with :
@@ -96,12 +96,12 @@ jobs:
9696 permissions :
9797 contents : read
9898 steps :
99- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
99+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
100100 with :
101101 persist-credentials : false
102102 - name : Install Rust
103103 run : rustup toolchain install nightly --profile minimal && rustup default nightly
104- - uses : Swatinem/rust-cache@ad397744b0d591a723ab90405b7247fac0e6b8db # v2
104+ - uses : Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
105105
106106 - uses : ./.github/actions/install-tools
107107 with :
@@ -120,7 +120,7 @@ jobs:
120120 permissions :
121121 contents : read
122122 steps :
123- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
123+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
124124 with :
125125 persist-credentials : false
126126 - name : Install Rust
@@ -144,12 +144,12 @@ jobs:
144144 matrix :
145145 rust : ["1.86", stable]
146146 steps :
147- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
147+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
148148 with :
149149 persist-credentials : false
150150 - name : Install Rust
151151 run : rustup toolchain install ${{ matrix.rust }} --profile minimal && rustup default ${{ matrix.rust }}
152- - uses : Swatinem/rust-cache@ad397744b0d591a723ab90405b7247fac0e6b8db # v2
152+ - uses : Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
153153 - name : Compile examples
154154 run : cargo build --examples --all-features
155155
@@ -159,13 +159,13 @@ jobs:
159159 permissions :
160160 contents : read
161161 steps :
162- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
162+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
163163 with :
164164 persist-credentials : false
165165
166166 - name : Install Rust
167167 run : rustup toolchain install stable --profile minimal -c llvm-tools-preview
168- - uses : Swatinem/rust-cache@ad397744b0d591a723ab90405b7247fac0e6b8db # v2
168+ - uses : Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
169169
170170 - name : Install cargo-llvm-cov
171171 run : cargo install --locked cargo-llvm-cov
@@ -183,13 +183,13 @@ jobs:
183183 permissions :
184184 contents : read
185185 steps :
186- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
186+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
187187 with :
188188 persist-credentials : false
189189
190190 - name : Install Rust
191191 run : rustup toolchain install stable --profile minimal
192- - uses : Swatinem/rust-cache@ad397744b0d591a723ab90405b7247fac0e6b8db # v2
192+ - uses : Swatinem/rust-cache@c19371144df3bb44fab255c43d04cbc2ab54d1c4 # v2.9.1
193193
194194 - uses : ./.github/actions/install-tools
195195 with :
@@ -204,11 +204,11 @@ jobs:
204204 permissions :
205205 contents : read
206206 steps :
207- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
207+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
208208 with :
209209 persist-credentials : false
210210
211- - uses : cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # v27
211+ - uses : cachix/install-nix-action@1ca7d21a94afc7c957383a2d217460d980de4934 # v31.10.1
212212 - uses : ./.github/actions/install-tools
213213 with :
214214 tools : just
@@ -226,7 +226,7 @@ jobs:
226226 # Used by our trusted publishing flow
227227 id-token : write
228228 steps :
229- - uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
229+ - uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
230230 with :
231231 persist-credentials : false
232232
@@ -239,7 +239,7 @@ jobs:
239239
240240 - name : Generate app token
241241 if : steps.check.outputs.skip != 'true'
242- uses : actions/create-github-app-token@d72941d797fd3113feb6b93fd0dec494b13a2547 # v1
242+ uses : actions/create-github-app-token@f8d387b68d61c58ab83c6c016672934102569859 # v3.0.0
243243 id : app-token
244244 with :
245245 app-id : ${{ vars.HEGEL_RELEASE_APP_ID }}
@@ -248,7 +248,7 @@ jobs:
248248
249249 - name : Re-checkout with app token # zizmor: ignore[artipacked]
250250 if : steps.check.outputs.skip != 'true'
251- uses : actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
251+ uses : actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
252252 with :
253253 token : ${{ steps.app-token.outputs.token }}
254254
0 commit comments