Skip to content

Commit ea6f81c

Browse files
Merge pull request #131 from ServiceNow/update-github-actions-cache-version
Update Github Actions cache version
2 parents 50cc1c0 + 9325b83 commit ea6f81c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/publish.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Setup Python
13-
uses: actions/setup-python@v4
13+
uses: actions/setup-python@v5
1414
with:
1515
python-version: "3.11"
1616
- name: cache poetry install
17-
uses: actions/cache@v2
17+
uses: actions/cache@v4
1818
with:
1919
path: ~/.local
2020
key: poetry-1.4.2-0
@@ -26,7 +26,7 @@ jobs:
2626
virtualenvs-in-project: true
2727
- name: cache deps
2828
id: cache-deps
29-
uses: actions/cache@v2
29+
uses: actions/cache@v4
3030
with:
3131
path: .venv
3232
key: pydeps-${{ hashFiles('**/poetry.lock') }}

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
virtualenvs-in-project: true
7777
- name: cache deps
7878
id: cache-deps
79-
uses: actions/cache@v2
79+
uses: actions/cache@v4
8080
with:
8181
path: .venv
8282
key: pydeps-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)