Skip to content

Commit 1514814

Browse files
committed
GH Actions: Update to Node20 native versions.
1 parent 9ed6663 commit 1514814

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/deploy.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v3
14-
- uses: actions/setup-python@v4
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-python@v5
1515
with:
1616
python-version: 3.9
17-
- uses: actions/cache@v2
17+
- uses: actions/cache@v4
1818
with:
1919
key: ${{ github.ref }}
2020
path: .cache

.github/workflows/lint.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ jobs:
99
black:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1313
- uses: psf/black@stable
1414
with:
1515
options: "--check --verbose --diff --color"
1616

1717
ruff:
1818
runs-on: ubuntu-latest
1919
steps:
20-
- uses: actions/checkout@v3
20+
- uses: actions/checkout@v4
2121
- uses: jpetrucciani/ruff-check@main

.github/workflows/release.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ jobs:
77
black:
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1111
- uses: psf/black@stable
1212
with:
1313
options: "--check --verbose --diff --color"
1414

1515
ruff:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919
- uses: jpetrucciani/ruff-check@main
2020

2121
# Tests
@@ -24,7 +24,7 @@ jobs:
2424
runs-on: ubuntu-latest
2525
timeout-minutes: 10
2626
steps:
27-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2828

2929
- name: Setup running platform stack
3030
run: docker compose up --build -d
@@ -42,7 +42,7 @@ jobs:
4242
needs: [black, ruff]
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: actions/checkout@v3
45+
- uses: actions/checkout@v4
4646

4747
- name: Build Test
4848
run: docker build -f docker/python/Dockerfile --target base -t dp3_interpreter .
@@ -59,7 +59,7 @@ jobs:
5959
id-token: write # Mandatory for trusted publishing
6060
steps:
6161
- name: Checkout
62-
uses: actions/checkout@v3
62+
uses: actions/checkout@v4
6363
with:
6464
fetch-depth: 0
6565
- run: python3 -m pip install --upgrade build && python3 -m build

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
timeout-minutes: 10
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Setup running platform stack
1616
run: docker compose up --build -d
@@ -33,7 +33,7 @@ jobs:
3333
unit-tests:
3434
runs-on: ubuntu-latest
3535
steps:
36-
- uses: actions/checkout@v3
36+
- uses: actions/checkout@v4
3737

3838
- name: Build Test
3939
run: docker build -f docker/python/Dockerfile --target base -t dp3_interpreter .

0 commit comments

Comments
 (0)