Skip to content

Commit da91f6f

Browse files
Bump actions/cache from 4.2.2 to 4.2.3 (#10306)
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.2 to 4.2.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.2...v4.2.3) --- updated-dependencies: - dependency-name: actions/cache 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 5ab0d19 commit da91f6f

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].2
44+
uses: actions/[email protected].3
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].2
52+
uses: actions/[email protected].3
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].2
73+
uses: actions/[email protected].3
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].2
100+
uses: actions/[email protected].3
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].2
109+
uses: actions/[email protected].3
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].2
141+
uses: actions/[email protected].3
142142
with:
143143
path: venv
144144
fail-on-cache-miss: true
@@ -166,7 +166,7 @@ jobs:
166166
check-latest: true
167167
- name: Restore Python virtual environment
168168
id: cache-venv
169-
uses: actions/[email protected].2
169+
uses: actions/[email protected].3
170170
with:
171171
path: venv
172172
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].2
54+
uses: actions/[email protected].3
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].2
87+
uses: actions/[email protected].3
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].2
44+
uses: actions/[email protected].3
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].2
48+
uses: actions/cache/[email protected].3
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].2
66+
uses: actions/cache/[email protected].3
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].2
85+
uses: actions/cache/[email protected].3
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].2
98+
uses: actions/cache/[email protected].3
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].2
59+
uses: actions/cache/[email protected].3
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].2
78+
uses: actions/cache/[email protected].3
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].2
154+
uses: actions/cache/[email protected].3
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].2
167+
uses: actions/cache/[email protected].3
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
@@ -60,7 +60,7 @@ jobs:
6060
$GITHUB_OUTPUT
6161
- name: Restore Python virtual environment
6262
id: cache-venv
63-
uses: actions/[email protected].2
63+
uses: actions/[email protected].3
6464
with:
6565
path: venv
6666
key: >-
@@ -107,7 +107,7 @@ jobs:
107107
check-latest: true
108108
- name: Restore Python virtual environment
109109
id: cache-venv
110-
uses: actions/[email protected].2
110+
uses: actions/[email protected].3
111111
with:
112112
path: venv
113113
fail-on-cache-miss: true
@@ -147,7 +147,7 @@ jobs:
147147
check-latest: true
148148
- name: Restore Python virtual environment
149149
id: cache-venv
150-
uses: actions/[email protected].2
150+
uses: actions/[email protected].3
151151
with:
152152
path: venv
153153
fail-on-cache-miss: true
@@ -208,7 +208,7 @@ jobs:
208208
}}" >> $env:GITHUB_OUTPUT
209209
- name: Restore Python virtual environment
210210
id: cache-venv
211-
uses: actions/[email protected].2
211+
uses: actions/[email protected].3
212212
with:
213213
path: venv
214214
key: >-

0 commit comments

Comments
 (0)