Skip to content

Commit 62b5da4

Browse files
Bump actions/cache from 4.2.4 to 4.3.0 (#10601)
Bumps [actions/cache](https://github.com/actions/cache) from 4.2.4 to 4.3.0. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4.2.4...v4.3.0) --- updated-dependencies: - dependency-name: actions/cache dependency-version: 4.3.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 0c56977 commit 62b5da4

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
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.2.4
44+
uses: actions/cache@v4.3.0
4545
with:
4646
path: venv
4747
key: >-

.github/workflows/checks.yaml

Lines changed: 4 additions & 4 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.2.4
55+
uses: actions/cache@v4.3.0
5656
with:
5757
path: venv
5858
key: >-
@@ -73,7 +73,7 @@ jobs:
7373
hashFiles('.pre-commit-config.yaml') }}" >> $GITHUB_OUTPUT
7474
- name: Restore pre-commit environment
7575
id: cache-precommit
76-
uses: actions/cache@v4.2.4
76+
uses: actions/cache@v4.3.0
7777
with:
7878
path: ${{ env.PRE_COMMIT_CACHE }}
7979
key: >-
@@ -95,7 +95,7 @@ jobs:
9595
- &cache-restore-python
9696
name: Restore Python virtual environment
9797
id: cache-venv
98-
uses: actions/cache/restore@v4.2.4
98+
uses: actions/cache/restore@v4.3.0
9999
with:
100100
path: venv
101101
fail-on-cache-miss: true
@@ -104,7 +104,7 @@ jobs:
104104
needs.prepare-base.outputs.python-key }}
105105
- name: Restore pre-commit environment
106106
id: cache-precommit
107-
uses: actions/cache/restore@v4.2.4
107+
uses: actions/cache/restore@v4.3.0
108108
with:
109109
path: ${{ env.PRE_COMMIT_CACHE }}
110110
fail-on-cache-miss: true

.github/workflows/primer-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
$GITHUB_OUTPUT
5555
- name: Restore Python virtual environment
5656
id: cache-venv
57-
uses: actions/cache@v4.2.4
57+
uses: actions/cache@v4.3.0
5858
with:
5959
path: venv
6060
key: >-
@@ -81,7 +81,7 @@ jobs:
8181
- *setup-python
8282
- name: Restore Python virtual environment
8383
id: cache-venv
84-
uses: actions/cache/restore@v4.2.4
84+
uses: actions/cache/restore@v4.3.0
8585
with:
8686
path: venv
8787
fail-on-cache-miss: true

.github/workflows/primer_comment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# Restore cached Python environment
4444
- name: Restore Python virtual environment
4545
id: cache-venv
46-
uses: actions/cache@v4.2.4
46+
uses: actions/cache@v4.3.0
4747
with:
4848
path: venv
4949
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.2.4
48+
uses: actions/cache/restore@v4.3.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.2.4
66+
uses: actions/cache/save@v4.3.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.2.4
85+
uses: actions/cache/restore@v4.3.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.2.4
98+
uses: actions/cache/save@v4.3.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.2.4
59+
uses: actions/cache/restore@v4.3.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.2.4
78+
uses: actions/cache/save@v4.3.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.2.4
154+
uses: actions/cache/restore@v4.3.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.2.4
167+
uses: actions/cache/save@v4.3.0
168168
with:
169169
path: tests/.pylint_primer_tests/
170170
key: >-

.github/workflows/tests.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- &cache-python
6666
name: Restore Python virtual environment
6767
id: cache-venv
68-
uses: actions/cache@v4.2.4
68+
uses: actions/cache@v4.3.0
6969
with:
7070
path: venv
7171
key: >-
@@ -113,7 +113,7 @@ jobs:
113113
- &cache-restore-python
114114
name: Restore Python virtual environment
115115
id: cache-venv
116-
uses: actions/cache/restore@v4.2.4
116+
uses: actions/cache/restore@v4.3.0
117117
with:
118118
path: venv
119119
fail-on-cache-miss: true

0 commit comments

Comments
 (0)