Skip to content

Commit 217cf33

Browse files
authored
Updated Actions which uses a deprecated Node.js version (#786)
Updated Actions which uses a deprecated Node.js version and will be forced to run on node20
1 parent c7d60e5 commit 217cf33

5 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/ci-container-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ jobs:
3636
runs-on: ubuntu-latest
3737
steps:
3838
- name: Checkout code
39-
uses: actions/checkout@v3
39+
uses: actions/checkout@v4
4040
- name: Login to Docker Hub
41-
uses: docker/login-action@v2
41+
uses: docker/login-action@v3
4242
with:
4343
username: ${{ secrets.DOCKERHUB_USERNAME }}
4444
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/ci-test.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ jobs:
1515

1616
steps:
1717
- name: Checkout repository
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: Set up Python
21-
uses: actions/setup-python@v4
21+
uses: actions/setup-python@v5
2222
with:
2323
python-version: '3.9'
2424

2525
- name: Cache tox environments
26-
uses: actions/cache@v3
26+
uses: actions/cache@v4
2727
with:
2828
path: .tox/
2929
key: ${{ runner.os }}-tox-${{ hashFiles('**/pyproject.toml', '**/tox.ini') }}

.github/workflows/docker-tools-build-push.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ jobs:
2727
run: echo "${{ toJSON(github.event.inputs) }}"
2828

2929
- name: Checkout code
30-
uses: actions/checkout@v2
30+
uses: actions/checkout@v4
3131

3232
- name: Login to Docker Hub
33-
uses: docker/login-action@v1
33+
uses: docker/login-action@v3
3434
with:
3535
username: ${{ secrets.DOCKERHUB_USERNAME }}
3636
password: ${{ secrets.DOCKERHUB_TOKEN }}

.github/workflows/pdm-lock-automation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ jobs:
2525

2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929
with:
3030
ref: ${{ github.head_ref }}
3131

3232
- name: Set up Python
33-
uses: actions/setup-python@v4
33+
uses: actions/setup-python@v5
3434
with:
3535
python-version: '3.9'
3636

.github/workflows/production-build.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,18 +23,18 @@ jobs:
2323
steps:
2424
- name: Checkout code for release
2525
if: github.event_name == 'release'
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v4
2727
with:
2828
ref: ${{ github.event.release.tag_name }}
2929

3030

3131
- name: Checkout code for branch
3232
if: github.event_name != 'release'
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
3434

3535

3636
- name: Login to Docker Hub
37-
uses: docker/login-action@v1
37+
uses: docker/login-action@v3
3838
with:
3939
username: ${{ secrets.DOCKERHUB_USERNAME }}
4040
password: ${{ secrets.DOCKERHUB_TOKEN }}

0 commit comments

Comments
 (0)