Skip to content

Commit d4a5c98

Browse files
committed
upgrade gh actions for node v20
1 parent 4349768 commit d4a5c98

4 files changed

+24
-24
lines changed

.github/workflows/nightly_core_functionality_tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -52,14 +52,14 @@ jobs:
5252
python-version: [3.9]
5353
steps:
5454
- name: Git checkout
55-
uses: actions/checkout@v3
55+
uses: actions/checkout@v4
5656
- name: Set up Python ${{ matrix.python-version }}
57-
uses: actions/setup-python@v4
57+
uses: actions/setup-python@v5
5858
with:
5959
python-version: ${{ matrix.python-version }}
6060
- name: Cache Build Requirements
6161
id: pip-cache-step
62-
uses: actions/cache@v3
62+
uses: actions/cache@v4
6363
with:
6464
path: ${{ env.pythonLocation }}
6565
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}
@@ -82,13 +82,13 @@ jobs:
8282
matrix:
8383
browser: [chrome, firefox, edge]
8484
steps:
85-
- uses: actions/checkout@v3
85+
- uses: actions/checkout@v4
8686
- name: Set up Python 3.9
87-
uses: actions/setup-python@v4
87+
uses: actions/setup-python@v5
8888
with:
8989
python-version: 3.9
9090
- name: Cache pip
91-
uses: actions/cache@v3
91+
uses: actions/cache@v4
9292
with:
9393
path: ${{ env.pythonLocation }}
9494
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}

.github/workflows/production_smoke_tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -48,14 +48,14 @@ jobs:
4848
python-version: [3.9]
4949
steps:
5050
- name: Git checkout
51-
uses: actions/checkout@v3
51+
uses: actions/checkout@v4
5252
- name: Set up Python ${{ matrix.python-version }}
53-
uses: actions/setup-python@v4
53+
uses: actions/setup-python@v5
5454
with:
5555
python-version: ${{ matrix.python-version }}
5656
- name: Cache Build Requirements
5757
id: pip-cache-step
58-
uses: actions/cache@v3
58+
uses: actions/cache@v4
5959
with:
6060
path: ${{ env.pythonLocation }}
6161
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}
@@ -78,13 +78,13 @@ jobs:
7878
matrix:
7979
browser: [chrome, firefox, edge]
8080
steps:
81-
- uses: actions/checkout@v3
81+
- uses: actions/checkout@v4
8282
- name: Set up Python 3.9
83-
uses: actions/setup-python@v4
83+
uses: actions/setup-python@v5
8484
with:
8585
python-version: 3.9
8686
- name: Cache pip
87-
uses: actions/cache@v3
87+
uses: actions/cache@v4
8888
with:
8989
path: ${{ env.pythonLocation }}
9090
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}

.github/workflows/two_minute_drill.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ jobs:
6161
python-version: [3.9]
6262
steps:
6363
- name: Git checkout
64-
uses: actions/checkout@v3
64+
uses: actions/checkout@v4
6565
- name: Set up Python ${{ matrix.python-version }}
66-
uses: actions/setup-python@v4
66+
uses: actions/setup-python@v5
6767
with:
6868
python-version: ${{ matrix.python-version }}
6969
- name: Cache Build Requirements
7070
id: pip-cache-step
71-
uses: actions/cache@v3
71+
uses: actions/cache@v4
7272
with:
7373
path: ${{ env.pythonLocation }}
7474
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}
@@ -89,13 +89,13 @@ jobs:
8989
fail-fast: false
9090
max-parallel: 1 # run in series
9191
steps:
92-
- uses: actions/checkout@v3
92+
- uses: actions/checkout@v4
9393
- name: Set up Python 3.9
94-
uses: actions/setup-python@v4
94+
uses: actions/setup-python@v5
9595
with:
9696
python-version: 3.9
9797
- name: Cache pip
98-
uses: actions/cache@v3
98+
uses: actions/cache@v4
9999
with:
100100
path: ${{ env.pythonLocation }}
101101
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}

.github/workflows/weekly_regression_tests.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -93,14 +93,14 @@ jobs:
9393
python-version: [3.9]
9494
steps:
9595
- name: Git checkout
96-
uses: actions/checkout@v3
96+
uses: actions/checkout@v4
9797
- name: Set up Python ${{ matrix.python-version }}
98-
uses: actions/setup-python@v4
98+
uses: actions/setup-python@v5
9999
with:
100100
python-version: ${{ matrix.python-version }}
101101
- name: Cache Build Requirements
102102
id: pip-cache-step
103-
uses: actions/cache@v3
103+
uses: actions/cache@v4
104104
with:
105105
path: ${{ env.pythonLocation }}
106106
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}
@@ -156,13 +156,13 @@ jobs:
156156
matrix:
157157
browser: ${{ fromJson(needs.set_matrix.outputs.matrix) }}
158158
steps:
159-
- uses: actions/checkout@v3
159+
- uses: actions/checkout@v4
160160
- name: Set up Python 3.9
161-
uses: actions/setup-python@v4
161+
uses: actions/setup-python@v5
162162
with:
163163
python-version: 3.9
164164
- name: Cache pip
165-
uses: actions/cache@v3
165+
uses: actions/cache@v4
166166
with:
167167
path: ${{ env.pythonLocation }}
168168
key: ${{ env.GHA_DISTRO }}-${{ env.pythonLocation }}-${{ hashFiles('requirements.txt') }}

0 commit comments

Comments
 (0)