Skip to content

Commit 877d777

Browse files
Bump actions/cache from 4.2.3 to 4.2.4 (#10494)
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.3 to 4.2.4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.3...v4.2.4) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.2.4 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 00353fb commit 877d777

File tree

7 files changed

+22
-22
lines changed

7 files changed

+22
-22
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/[email protected].3
44+
uses: actions/[email protected].4
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/[email protected].3
52+
uses: actions/[email protected].4
5353
with:
5454
path: venv
5555
key: >-
@@ -70,7 +70,7 @@ jobs:
7070
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
7171
- name: Restore pre-commit environment
7272
id: cache-precommit
73-
uses: actions/[email protected].3
73+
uses: actions/[email protected].4
7474
with:
7575
path: ${{ env.PRE_COMMIT_CACHE }}
7676
key: >-
@@ -97,7 +97,7 @@ jobs:
9797
check-latest: true
9898
- name: Restore Python virtual environment
9999
id: cache-venv
100-
uses: actions/[email protected].3
100+
uses: actions/[email protected].4
101101
with:
102102
path: venv
103103
fail-on-cache-miss: true
@@ -106,7 +106,7 @@ jobs:
106106
needs.prepare-base.outputs.python-key }}
107107
- name: Restore pre-commit environment
108108
id: cache-precommit
109-
uses: actions/[email protected].3
109+
uses: actions/[email protected].4
110110
with:
111111
path: ${{ env.PRE_COMMIT_CACHE }}
112112
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/[email protected].3
141+
uses: actions/[email protected].4
142142
with:
143143
path: venv
144144
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/[email protected].3
170+
uses: actions/[email protected].4
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/[email protected].3
54+
uses: actions/[email protected].4
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/[email protected].3
87+
uses: actions/[email protected].4
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/[email protected].3
44+
uses: actions/[email protected].4
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/[email protected].3
48+
uses: actions/cache/[email protected].4
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/[email protected].3
66+
uses: actions/cache/[email protected].4
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/[email protected].3
85+
uses: actions/cache/[email protected].4
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/[email protected].3
98+
uses: actions/cache/[email protected].4
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/[email protected].3
59+
uses: actions/cache/[email protected].4
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/[email protected].3
78+
uses: actions/cache/[email protected].4
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/[email protected].3
154+
uses: actions/cache/[email protected].4
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/[email protected].3
167+
uses: actions/cache/[email protected].4
168168
with:
169169
path: tests/.pylint_primer_tests/
170170
key: >-

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
$GITHUB_OUTPUT
6262
- name: Restore Python virtual environment
6363
id: cache-venv
64-
uses: actions/[email protected].3
64+
uses: actions/[email protected].4
6565
with:
6666
path: venv
6767
key: >-
@@ -109,7 +109,7 @@ jobs:
109109
check-latest: true
110110
- name: Restore Python virtual environment
111111
id: cache-venv
112-
uses: actions/[email protected].3
112+
uses: actions/[email protected].4
113113
with:
114114
path: venv
115115
fail-on-cache-miss: true
@@ -149,7 +149,7 @@ jobs:
149149
check-latest: true
150150
- name: Restore Python virtual environment
151151
id: cache-venv
152-
uses: actions/[email protected].3
152+
uses: actions/[email protected].4
153153
with:
154154
path: venv
155155
fail-on-cache-miss: true
@@ -210,7 +210,7 @@ jobs:
210210
}}" >> $env:GITHUB_OUTPUT
211211
- name: Restore Python virtual environment
212212
id: cache-venv
213-
uses: actions/[email protected].3
213+
uses: actions/[email protected].4
214214
with:
215215
path: venv
216216
key: >-

0 commit comments

Comments
 (0)