Skip to content

Commit 9fb10b2

Browse files
authored
ci: Disable Github actions cache (#2582)
1 parent cd97a79 commit 9fb10b2

File tree

4 files changed

+13
-0
lines changed

4 files changed

+13
-0
lines changed

.github/actions/duvet/action.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ runs:
4646
with:
4747
crate: duvet
4848
version: ${{ inputs.duvet-version }}
49+
use-cache: false
4950

5051
- name: Generate Duvet report
5152
shell: bash

.github/workflows/book.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ name: book
1010

1111
env:
1212
CDN: https://dnglbrstg7yg.cloudfront.net
13+
USE_CACHE: false
1314

1415
# By default depandabot only receives read permissions. Explicitly give it write
1516
# permissions which is needed by the ouzi-dev/commit-status-updater task.
@@ -36,6 +37,7 @@ jobs:
3637
- uses: camshaft/install@v1
3738
with:
3839
crate: mdbook
40+
use-cache: ${{env.USE_CACHE}}
3941

4042
- name: Build book
4143
run: ./scripts/book

.github/workflows/ci.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ env:
2020
# enable unstable features for testing
2121
S2N_UNSTABLE_CRYPTO_OPT_TX: 100
2222
S2N_UNSTABLE_CRYPTO_OPT_RX: 100
23+
USE_CACHE: false
2324

2425
# By default depandabot only receives read permissions. Explicitly give it write
2526
# permissions which is needed by the ouzi-dev/commit-status-updater task.
@@ -141,6 +142,7 @@ jobs:
141142
- uses: camshaft/install@v1
142143
with:
143144
crate: cargo-udeps
145+
use-cache: ${{ env.USE_CACHE }}
144146

145147
- name: Run cargo udeps
146148
run: cargo udeps --workspace --all-targets
@@ -254,6 +256,7 @@ jobs:
254256
uses: camshaft/install@v1
255257
with:
256258
crate: cross
259+
use-cache: ${{ env.USE_CACHE }}
257260

258261
- uses: camshaft/rust-cache@v1
259262
with:
@@ -660,6 +663,7 @@ jobs:
660663
uses: camshaft/install@v1
661664
with:
662665
crate: cargo-insta
666+
use-cache: ${{ env.USE_CACHE }}
663667

664668
- uses: camshaft/rust-cache@v1
665669

@@ -732,6 +736,7 @@ jobs:
732736
with:
733737
crate: typos-cli
734738
bins: typos
739+
use-cache: ${{ env.USE_CACHE }}
735740

736741
- name: Run typos
737742
run: |
@@ -853,6 +858,7 @@ jobs:
853858
- uses: camshaft/install@v1
854859
with:
855860
crate: bpf-linker
861+
use-cache: ${{ env.USE_CACHE }}
856862

857863
- uses: camshaft/rust-cache@v1
858864

@@ -887,6 +893,7 @@ jobs:
887893
with:
888894
crate: bindgen-cli
889895
bins: bindgen
896+
use-cache: ${{ env.USE_CACHE }}
890897

891898
- uses: camshaft/rust-cache@v1
892899

.github/workflows/qns.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ env:
2222
WIRESHARK_VERSION: 4.4.2
2323
CDN: https://dnglbrstg7yg.cloudfront.net
2424
LOG_URL: logs/latest/SERVER_CLIENT/TEST/index.html
25+
USE_CACHE: false
2526

2627
# By default depandabot only receives read permissions. Explicitly give it write
2728
# permissions which is needed by the ouzi-dev/commit-status-updater task.
@@ -393,11 +394,13 @@ jobs:
393394
with:
394395
crate: inferno
395396
bins: inferno-collapse-perf,inferno-flamegraph
397+
use-cache: ${{ env.USE_CACHE }}
396398

397399
- name: Install ultraman
398400
uses: camshaft/install@v1
399401
with:
400402
crate: ultraman
403+
use-cache: ${{ env.USE_CACHE }}
401404

402405
- uses: actions/download-artifact@v4
403406
with:

0 commit comments

Comments
 (0)