Skip to content

Commit 7ba0148

Browse files
Bump actions/cache from 3.2.5 to 3.3.1 (#8445)
Bumps [actions/cache](https://github.com/actions/cache) from 3.2.5 to 3.3.1. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3.2.5...v3.3.1) --- 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 f3e4a41 commit 7ba0148

File tree

7 files changed

+21
-21
lines changed

7 files changed

+21
-21
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@v3.2.5
44+
uses: actions/cache@v3.3.1
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@v3.2.5
52+
uses: actions/cache@v3.3.1
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/cache@v3.2.5
73+
uses: actions/cache@v3.3.1
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/cache@v3.2.5
100+
uses: actions/cache@v3.3.1
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/cache@v3.2.5
109+
uses: actions/cache@v3.3.1
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/cache@v3.2.5
141+
uses: actions/cache@v3.3.1
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/cache@v3.2.5
169+
uses: actions/cache@v3.3.1
170170
with:
171171
path: venv
172172
fail-on-cache-miss: true

.github/workflows/primer-test.yaml

Lines changed: 3 additions & 3 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@v3.2.5
54+
uses: actions/cache@v3.3.1
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@v3.2.5
87+
uses: actions/cache@v3.3.1
8888
with:
8989
path: venv
9090
fail-on-cache-miss: true
@@ -116,7 +116,7 @@ jobs:
116116
check-latest: true
117117
- name: Restore Python virtual environment
118118
id: cache-venv
119-
uses: actions/cache@v3.2.5
119+
uses: actions/cache@v3.3.1
120120
with:
121121
path: venv
122122
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@v3.2.5
44+
uses: actions/cache@v3.3.1
4545
with:
4646
path: venv
4747
fail-on-cache-miss: true

.github/workflows/primer_run_main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
# Create a re-usable virtual environment
4444
- name: Create Python virtual environment cache
4545
id: cache-venv
46-
uses: actions/cache@v3.2.5
46+
uses: actions/cache@v3.3.1
4747
with:
4848
path: venv
4949
key:
@@ -69,7 +69,7 @@ jobs:
6969
echo "commitstring=$output" >> $GITHUB_OUTPUT
7070
- name: Restore projects cache
7171
id: cache-projects
72-
uses: actions/cache@v3.2.5
72+
uses: actions/cache@v3.3.1
7373
with:
7474
path: tests/.pylint_primer_tests/
7575
key: >-

.github/workflows/primer_run_pr.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
# Restore cached Python environment
5555
- name: Restore Python virtual environment
5656
id: cache-venv
57-
uses: actions/cache@v3.2.5
57+
uses: actions/cache@v3.3.1
5858
with:
5959
path: venv
6060
key:
@@ -132,7 +132,7 @@ jobs:
132132
echo "commitstring=$output" >> $GITHUB_OUTPUT
133133
- name: Restore projects cache
134134
id: cache-projects
135-
uses: actions/cache@v3.2.5
135+
uses: actions/cache@v3.3.1
136136
with:
137137
path: tests/.pylint_primer_tests/
138138
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@v3.2.5
55+
uses: actions/cache@v3.3.1
5656
with:
5757
path: venv
5858
key: >-
@@ -97,7 +97,7 @@ jobs:
9797
check-latest: true
9898
- name: Restore Python virtual environment
9999
id: cache-venv
100-
uses: actions/cache@v3.2.5
100+
uses: actions/cache@v3.3.1
101101
with:
102102
path: venv
103103
fail-on-cache-miss: true
@@ -137,7 +137,7 @@ jobs:
137137
check-latest: true
138138
- name: Restore Python virtual environment
139139
id: cache-venv
140-
uses: actions/cache@v3.2.5
140+
uses: actions/cache@v3.3.1
141141
with:
142142
path: venv
143143
fail-on-cache-miss: true
@@ -197,7 +197,7 @@ jobs:
197197
}}" >> $env:GITHUB_OUTPUT
198198
- name: Restore Python virtual environment
199199
id: cache-venv
200-
uses: actions/cache@v3.2.5
200+
uses: actions/cache@v3.3.1
201201
with:
202202
path: venv
203203
key: >-
@@ -243,7 +243,7 @@ jobs:
243243
}}" >> $GITHUB_OUTPUT
244244
- name: Restore Python virtual environment
245245
id: cache-venv
246-
uses: actions/cache@v3.2.5
246+
uses: actions/cache@v3.3.1
247247
with:
248248
path: venv
249249
key: >-
@@ -287,7 +287,7 @@ jobs:
287287
}}" >> $GITHUB_OUTPUT
288288
- name: Restore Python virtual environment
289289
id: cache-venv
290-
uses: actions/cache@v3.2.5
290+
uses: actions/cache@v3.3.1
291291
with:
292292
path: venv
293293
key: >-

0 commit comments

Comments
 (0)