Skip to content

Commit e3720a5

Browse files
authored
Merge pull request #1265 from projectsyn/renovate/actions-cache-5.x
Update actions/cache action to v5
2 parents 487b22c + dc12464 commit e3720a5

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

.github/workflows/build-virtualenv-caches.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- name: Install tox
3030
run: |
3131
pip install tox
32-
- uses: actions/cache@v4
32+
- uses: actions/cache@v5
3333
with:
3434
path: |
3535
.tox
@@ -54,7 +54,7 @@ jobs:
5454
- name: Install tox
5555
run: |
5656
pip install tox
57-
- uses: actions/cache@v4
57+
- uses: actions/cache@v5
5858
with:
5959
path: |
6060
.tox
@@ -82,7 +82,7 @@ jobs:
8282
- name: Install tox
8383
run: |
8484
pip install tox
85-
- uses: actions/cache@v4
85+
- uses: actions/cache@v5
8686
with:
8787
path: |
8888
.tox
@@ -101,7 +101,7 @@ jobs:
101101
with:
102102
python-version: '3.11'
103103
- uses: Gr1N/setup-poetry@v9
104-
- uses: actions/cache@v4
104+
- uses: actions/cache@v5
105105
with:
106106
path: ~/.cache/pypoetry/virtualenvs
107107
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
python-version: '3.11'
2424
- uses: Gr1N/setup-poetry@v9
25-
- uses: actions/cache@v4
25+
- uses: actions/cache@v5
2626
with:
2727
path: ~/.cache/pypoetry/virtualenvs
2828
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
with:
2727
python-version: '3.11'
2828
- uses: Gr1N/setup-poetry@v9
29-
- uses: actions/cache@v4
29+
- uses: actions/cache@v5
3030
with:
3131
path: ~/.cache/pypoetry/virtualenvs
3232
key: ${{ runner.os }}-publish-pypi-${{ hashFiles('poetry.lock') }}

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Install tox
2525
run: |
2626
pip install tox
27-
- uses: actions/cache@v4
27+
- uses: actions/cache@v5
2828
with:
2929
path: |
3030
.tox
@@ -56,7 +56,7 @@ jobs:
5656
- name: Install tox
5757
run: |
5858
pip install tox
59-
- uses: actions/cache@v4
59+
- uses: actions/cache@v5
6060
with:
6161
path: |
6262
.tox
@@ -90,7 +90,7 @@ jobs:
9090
- name: Install tox
9191
run: |
9292
pip install tox
93-
- uses: actions/cache@v4
93+
- uses: actions/cache@v5
9494
with:
9595
path: |
9696
.tox
@@ -117,7 +117,7 @@ jobs:
117117
with:
118118
python-version: '3.11'
119119
- uses: Gr1N/setup-poetry@v9
120-
- uses: actions/cache@v4
120+
- uses: actions/cache@v5
121121
with:
122122
path: ~/.cache/pypoetry/virtualenvs
123123
key: ${{ runner.os }}-poetry-${{ hashFiles('poetry.lock') }}

0 commit comments

Comments
 (0)