Skip to content

Commit 0c50916

Browse files
Bump actions/cache from 4.1.2 to 4.2.0 (#10123)
Bumps [actions/cache](https://github.com/actions/cache) from 4.1.2 to 4.2.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.1.2...v4.2.0) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent c3b507b commit 0c50916

File tree

7 files changed

+24
-24
lines changed

7 files changed

+24
-24
lines changed

.github/workflows/changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
$GITHUB_OUTPUT
4242
- name: Restore Python virtual environment
4343
id: cache-venv
44-
uses: actions/cache@v4.1.2
44+
uses: actions/cache@v4.2.0
4545
with:
4646
path: venv
4747
key: >-

.github/workflows/checks.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949
$GITHUB_OUTPUT
5050
- name: Restore Python virtual environment
5151
id: cache-venv
52-
uses: actions/cache@v4.1.2
52+
uses: actions/cache@v4.2.0
5353
with:
5454
path: venv
5555
key: >-
@@ -71,7 +71,7 @@ jobs:
7171
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
7272
- name: Restore pre-commit environment
7373
id: cache-precommit
74-
uses: actions/cache@v4.1.2
74+
uses: actions/cache@v4.2.0
7575
with:
7676
path: ${{ env.PRE_COMMIT_CACHE }}
7777
key: >-
@@ -98,7 +98,7 @@ jobs:
9898
check-latest: true
9999
- name: Restore Python virtual environment
100100
id: cache-venv
101-
uses: actions/cache@v4.1.2
101+
uses: actions/cache@v4.2.0
102102
with:
103103
path: venv
104104
fail-on-cache-miss: true
@@ -107,7 +107,7 @@ jobs:
107107
needs.prepare-base.outputs.python-key }}
108108
- name: Restore pre-commit environment
109109
id: cache-precommit
110-
uses: actions/cache@v4.1.2
110+
uses: actions/cache@v4.2.0
111111
with:
112112
path: ${{ env.PRE_COMMIT_CACHE }}
113113
fail-on-cache-miss: true
@@ -139,7 +139,7 @@ jobs:
139139
check-latest: true
140140
- name: Restore Python virtual environment
141141
id: cache-venv
142-
uses: actions/cache@v4.1.2
142+
uses: actions/cache@v4.2.0
143143
with:
144144
path: venv
145145
fail-on-cache-miss: true
@@ -167,7 +167,7 @@ jobs:
167167
check-latest: true
168168
- name: Restore Python virtual environment
169169
id: cache-venv
170-
uses: actions/cache@v4.1.2
170+
uses: actions/cache@v4.2.0
171171
with:
172172
path: venv
173173
fail-on-cache-miss: true

.github/workflows/primer-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
$GITHUB_OUTPUT
5252
- name: Restore Python virtual environment
5353
id: cache-venv
54-
uses: actions/cache@v4.1.2
54+
uses: actions/cache@v4.2.0
5555
with:
5656
path: venv
5757
key: >-
@@ -84,7 +84,7 @@ jobs:
8484
check-latest: true
8585
- name: Restore Python virtual environment
8686
id: cache-venv
87-
uses: actions/cache@v4.1.2
87+
uses: actions/cache@v4.2.0
8888
with:
8989
path: venv
9090
fail-on-cache-miss: true

.github/workflows/primer_comment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# Restore cached Python environment
4242
- name: Restore Python virtual environment
4343
id: cache-venv
44-
uses: actions/cache@v4.1.2
44+
uses: actions/cache@v4.2.0
4545
with:
4646
path: venv
4747
key:

.github/workflows/primer_run_main.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
# Create a re-usable virtual environment
4646
- name: Restore Python virtual environment cache
4747
id: cache-venv
48-
uses: actions/cache/restore@v4.1.2
48+
uses: actions/cache/restore@v4.2.0
4949
with:
5050
path: venv
5151
key:
@@ -63,7 +63,7 @@ jobs:
6363
# Save cached Python environment (explicit because cancel-in-progress: true)
6464
- name: Save Python virtual environment to cache
6565
if: steps.cache-venv.outputs.cache-hit != 'true'
66-
uses: actions/cache/save@v4.1.2
66+
uses: actions/cache/save@v4.2.0
6767
with:
6868
path: venv
6969
key:
@@ -82,7 +82,7 @@ jobs:
8282
echo "commitstring=$output" >> $GITHUB_OUTPUT
8383
- name: Restore projects cache
8484
id: cache-projects
85-
uses: actions/cache/restore@v4.1.2
85+
uses: actions/cache/restore@v4.2.0
8686
with:
8787
path: tests/.pylint_primer_tests/
8888
key: >-
@@ -95,7 +95,7 @@ jobs:
9595
python tests/primer/__main__.py prepare --clone
9696
- name: Save projects cache
9797
if: steps.cache-projects.outputs.cache-hit != 'true'
98-
uses: actions/cache/save@v4.1.2
98+
uses: actions/cache/save@v4.2.0
9999
with:
100100
path: tests/.pylint_primer_tests/
101101
key: >-

.github/workflows/primer_run_pr.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
# Restore cached Python environment
5757
- name: Restore Python virtual environment
5858
id: cache-venv
59-
uses: actions/cache/restore@v4.1.2
59+
uses: actions/cache/restore@v4.2.0
6060
with:
6161
path: venv
6262
key:
@@ -75,7 +75,7 @@ jobs:
7575
# Save cached Python environment (explicit because cancel-in-progress: true)
7676
- name: Save Python virtual environment
7777
if: steps.cache-venv.outputs.cache-hit != 'true'
78-
uses: actions/cache/save@v4.1.2
78+
uses: actions/cache/save@v4.2.0
7979
with:
8080
path: venv
8181
key:
@@ -151,7 +151,7 @@ jobs:
151151
echo "commitstring=$output" >> $GITHUB_OUTPUT
152152
- name: Restore projects cache
153153
id: cache-projects
154-
uses: actions/cache/restore@v4.1.2
154+
uses: actions/cache/restore@v4.2.0
155155
with:
156156
path: tests/.pylint_primer_tests/
157157
key: >-
@@ -164,7 +164,7 @@ jobs:
164164
python tests/primer/__main__.py prepare --clone
165165
- name: Save projects cache
166166
if: steps.cache-projects.outputs.cache-hit != 'true'
167-
uses: actions/cache/save@v4.1.2
167+
uses: actions/cache/save@v4.2.0
168168
with:
169169
path: tests/.pylint_primer_tests/
170170
key: >-

.github/workflows/tests.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
$GITHUB_OUTPUT
5353
- name: Restore Python virtual environment
5454
id: cache-venv
55-
uses: actions/cache@v4.1.2
55+
uses: actions/cache@v4.2.0
5656
with:
5757
path: venv
5858
key: >-
@@ -98,7 +98,7 @@ jobs:
9898
check-latest: true
9999
- name: Restore Python virtual environment
100100
id: cache-venv
101-
uses: actions/cache@v4.1.2
101+
uses: actions/cache@v4.2.0
102102
with:
103103
path: venv
104104
fail-on-cache-miss: true
@@ -138,7 +138,7 @@ jobs:
138138
check-latest: true
139139
- name: Restore Python virtual environment
140140
id: cache-venv
141-
uses: actions/cache@v4.1.2
141+
uses: actions/cache@v4.2.0
142142
with:
143143
path: venv
144144
fail-on-cache-miss: true
@@ -199,7 +199,7 @@ jobs:
199199
}}" >> $env:GITHUB_OUTPUT
200200
- name: Restore Python virtual environment
201201
id: cache-venv
202-
uses: actions/cache@v4.1.2
202+
uses: actions/cache@v4.2.0
203203
with:
204204
path: venv
205205
key: >-
@@ -245,7 +245,7 @@ jobs:
245245
}}" >> $GITHUB_OUTPUT
246246
- name: Restore Python virtual environment
247247
id: cache-venv
248-
uses: actions/cache@v4.1.2
248+
uses: actions/cache@v4.2.0
249249
with:
250250
path: venv
251251
key: >-
@@ -289,7 +289,7 @@ jobs:
289289
}}" >> $GITHUB_OUTPUT
290290
- name: Restore Python virtual environment
291291
id: cache-venv
292-
uses: actions/cache@v4.1.2
292+
uses: actions/cache@v4.2.0
293293
with:
294294
path: venv
295295
key: >-

0 commit comments

Comments
 (0)