Skip to content

Commit 20e8cab

Browse files
committed
no deprecated nodejs-16 workflow actions
1 parent 9a8c11f commit 20e8cab

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/install-linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ jobs:
1919

2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323
with:
2424
submodules: recursive
2525

2626
- name: Set up Python ${{ matrix.python-version }}
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
# update-environment: false
@@ -35,7 +35,7 @@ jobs:
3535

3636
# NOTE: see above NOTE, we are still using deprecated cache restore
3737
- name: Reload Cache / pip
38-
uses: actions/cache@v3
38+
uses: actions/cache@v4
3939
with:
4040
path: ~/.cache/pip
4141
# NOTE: only cares about base requirements.txt

.github/workflows/install-win32.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,18 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v3
20+
uses: actions/checkout@v4
2121
with:
2222
submodules: recursive
2323

2424
- name: Set up Python ${{ matrix.python-version }}
25-
uses: actions/setup-python@v4
25+
uses: actions/setup-python@v5
2626
with:
2727
python-version: ${{ matrix.python-version }}
2828
# update-environment: false
2929

3030
- name: Reload Cache / pip
31-
uses: actions/cache@v3
31+
uses: actions/cache@v4
3232
with:
3333
path: ~\AppData\Local\pip\Cache
3434
# NOTE: only cares about base requirements.txt

.github/workflows/lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
submodules: recursive
2222

2323
- name: Fetch master (for incremental diff, lint filter mask)
2424
run: git fetch origin master
2525

2626
- name: Reload Cache / pip
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: 3
3030
cache: "pip" # caching pip dependencies

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
submodules: recursive
1818

0 commit comments

Comments
 (0)