Skip to content

Commit b7cf3df

Browse files
committed
chore: update actions versions in github workflows
Old versions used a deprecated nodejs version
1 parent 666ded5 commit b7cf3df

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/docs-new-release.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
python-version: '3.11.4'
2121
- name: Load cached Poetry install
22-
uses: actions/cache@v3
22+
uses: actions/cache@v4
2323
id: cached-poetry
2424
with:
2525
path: ~/.local
@@ -39,7 +39,7 @@ jobs:
3939
poetry add --lock --no-interaction --source torch-cpu "torch@$torch_version"
4040
- name: Load cached venv
4141
id: cached-poetry-dependencies
42-
uses: actions/cache@v3
42+
uses: actions/cache@v4
4343
with:
4444
path: .venv
4545
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/docs.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
with:
1919
python-version: '3.11.4'
2020
- name: Load cached Poetry install
21-
uses: actions/cache@v3
21+
uses: actions/cache@v4
2222
id: cached-poetry
2323
with:
2424
path: ~/.local
@@ -38,7 +38,7 @@ jobs:
3838
poetry add --lock --no-interaction --source torch-cpu "torch@$torch_version"
3939
- name: Load cached venv
4040
id: cached-poetry-dependencies
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
with:
4343
path: .venv
4444
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

.github/workflows/tests.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ jobs:
1212
if: github.repository == 'ruflab/shimmer' || (github.event.ref != 'refs/heads/public-clone' && github.event.ref != 'refs/heads/main')
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v4
1616
- name: Set up Python 3.11
17-
uses: actions/setup-python@v3
17+
uses: actions/setup-python@v5
1818
with:
1919
python-version: "3.11.4"
2020
- name: Load cached Poetry install
21-
uses: actions/cache@v3
21+
uses: actions/cache@v4
2222
id: cached-poetry
2323
with:
2424
path: ~/.local
@@ -38,7 +38,7 @@ jobs:
3838
poetry add --lock --no-interaction --source torch-cpu "torch@$torch_version"
3939
- name: Load cached venv
4040
id: cached-poetry-dependencies
41-
uses: actions/cache@v3
41+
uses: actions/cache@v4
4242
with:
4343
path: .venv
4444
key: venv-${{ runner.os }}-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('**/poetry.lock') }}

0 commit comments

Comments
 (0)