Skip to content

Commit 9b22d8d

Browse files
chore(deps): Bump actions/cache from 5 to 6 (#381)
1 parent 280c678 commit 9b22d8d

9 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/arch_diff.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
python-version: "3.12"
4242

4343
- name: Cache pip
44-
uses: actions/cache@v5
44+
uses: actions/cache@v6
4545
with:
4646
path: ~/.cache/pip
4747
key: pip-arch-diff-${{ hashFiles('pyproject.toml') }}

.github/workflows/benchmark.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
python-version: "3.12"
4949

5050
- name: Cache pip
51-
uses: actions/cache@v5
51+
uses: actions/cache@v6
5252
with:
5353
path: ~/.cache/pip
5454
key: pip-bench-${{ hashFiles('pyproject.toml') }}
@@ -91,7 +91,7 @@ jobs:
9191
python-version: "3.12"
9292

9393
- name: Cache pip
94-
uses: actions/cache@v5
94+
uses: actions/cache@v6
9595
with:
9696
path: ~/.cache/pip
9797
key: pip-bench-${{ hashFiles('pyproject.toml') }}

.github/workflows/golden_regen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,15 +50,15 @@ jobs:
5050
python-version: "3.12"
5151

5252
- name: Cache pip packages
53-
uses: actions/cache@v5
53+
uses: actions/cache@v6
5454
with:
5555
path: ~/.cache/pip
5656
key: pip-golden-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
5757
restore-keys: |
5858
pip-golden-
5959
6060
- name: Cache HuggingFace models
61-
uses: actions/cache@v5
61+
uses: actions/cache@v6
6262
with:
6363
path: ~/.cache/huggingface
6464
key: hf-golden-${{ hashFiles('testdata/cases/**/*.yaml') }}

.github/workflows/gpu_l4_golden_parity.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
python-version: "3.12"
4545

4646
- name: Cache HuggingFace models
47-
uses: actions/cache@v5
47+
uses: actions/cache@v6
4848
with:
4949
path: ~/.cache/huggingface
5050
key: hf-gpu-${{ hashFiles('testdata/cases/**/*.yaml') }}

.github/workflows/gpu_l5_generation_e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
python-version: "3.12"
4545

4646
- name: Cache HuggingFace models
47-
uses: actions/cache@v5
47+
uses: actions/cache@v6
4848
with:
4949
path: ~/.cache/huggingface
5050
key: hf-gpu-${{ hashFiles('testdata/cases/**/*.yaml') }}

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
with:
8686
python-version: "3.12"
8787
- name: Cache pip packages
88-
uses: actions/cache@v5
88+
uses: actions/cache@v6
8989
with:
9090
path: ~/.cache/pip
9191
key: pip-smoke-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
@@ -132,7 +132,7 @@ jobs:
132132
with:
133133
python-version: "3.12"
134134
- name: Cache pip packages
135-
uses: actions/cache@v5
135+
uses: actions/cache@v6
136136
with:
137137
path: ~/.cache/pip
138138
key: pip-parity-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
@@ -227,7 +227,7 @@ jobs:
227227
with:
228228
python-version: ${{ matrix.python_version }}
229229
- name: Cache pip packages
230-
uses: actions/cache@v5
230+
uses: actions/cache@v6
231231
with:
232232
path: ~/.cache/pip
233233
key: pip-${{ runner.os }}-${{ matrix.python_version }}-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
@@ -270,7 +270,7 @@ jobs:
270270
with:
271271
python-version: "3.12"
272272
- name: Cache HuggingFace models
273-
uses: actions/cache@v5
273+
uses: actions/cache@v6
274274
with:
275275
path: ~/.cache/huggingface
276276
key: hf-integration-fast-${{ hashFiles('tests/integration_test.py') }}

.github/workflows/nightly_l2.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,15 +30,15 @@ jobs:
3030
python-version: "3.12"
3131

3232
- name: Cache pip packages
33-
uses: actions/cache@v5
33+
uses: actions/cache@v6
3434
with:
3535
path: ~/.cache/pip
3636
key: pip-nightly-l2-${{ hashFiles('pyproject.toml', 'requirements/ci/requirements.txt') }}
3737
restore-keys: |
3838
pip-nightly-l2-
3939
4040
- name: Cache HuggingFace configs
41-
uses: actions/cache@v5
41+
uses: actions/cache@v6
4242
with:
4343
path: ~/.cache/huggingface
4444
key: hf-l2-configs-${{ hashFiles('tests/arch_validation_test.py') }}

.github/workflows/pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
python-version: "3.12"
3333

3434
- name: Cache pip packages
35-
uses: actions/cache@v5
35+
uses: actions/cache@v6
3636
with:
3737
path: ~/.cache/pip
3838
key: pip-docs-${{ hashFiles('pyproject.toml') }}

.github/workflows/validation_examples_gpu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
python-version: "3.12"
6969

7070
- name: Cache HuggingFace models
71-
uses: actions/cache@v5
71+
uses: actions/cache@v6
7272
with:
7373
path: ~/.cache/huggingface
7474
key: hf-examples-gpu-${{ hashFiles('examples/*.py') }}

0 commit comments

Comments
 (0)