Skip to content

Commit 892b044

Browse files
committed
update to node 20 for actions
1 parent 8c896aa commit 892b044

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/workflow-docker-release.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,43 +10,43 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
- name: Set up QEMU for multi-arch support
1515
uses: docker/setup-qemu-action@v3
1616
- name: Set up Docker Buildx
1717
uses: docker/setup-buildx-action@v3
1818
- name: Login to Docker Hub
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
username: ${{ secrets.DOCKERHUB_USERNAME }}
2222
password: ${{ secrets.DOCKERHUB_TOKEN }}
2323
- name: Login to GitHub
24-
uses: docker/login-action@v2
24+
uses: docker/login-action@v3
2525
with:
2626
registry: ghcr.io
2727
username: ${{ github.repository_owner }}
2828
password: ${{ secrets.CR_PAT }}
2929
- name: Login to Quay
30-
uses: docker/login-action@v2
30+
uses: docker/login-action@v3
3131
with:
3232
registry: quay.io
3333
username: ${{ secrets.QUAY_USERNAME }}
3434
password: ${{ secrets.QUAY_TOKEN }}
3535
- name: Login to GitLab
36-
uses: docker/login-action@v2
36+
uses: docker/login-action@v3
3737
with:
3838
registry: registry.gitlab.com
3939
username: ${{ secrets.GITLAB_USERNAME }}
4040
password: ${{ secrets.GITLAB_TOKEN }}
4141
- name: Sync GitHub README.md with Docker Hub
42-
uses: peter-evans/dockerhub-description@v3
42+
uses: peter-evans/dockerhub-description@v4
4343
with:
4444
username: ${{ secrets.DOCKERHUB_USERNAME }}
4545
password: ${{ secrets.DOCKERHUB_PASSWORD }} # NOTE: This MUST be the password NOT the token
4646
repository: ${{ github.repository }}
4747
short-description: ${{ github.event.repository.description }}
4848
- name: DEBUG Show Runners environment
49-
uses: nick-fields/retry@v2
49+
uses: nick-fields/retry@v3
5050
with:
5151
timeout_minutes: 5
5252
max_attempts: 3
@@ -58,7 +58,7 @@ jobs:
5858
# to strip out '+' symbol - required due to gcr not supporting this as a tag
5959
# name (docker hub does support it).
6060
# note if push is NOT triggered by tag then 'GITHUB_REF_NAME' will be the branch name.
61-
uses: nick-fields/retry@v2
61+
uses: nick-fields/retry@v3
6262
with:
6363
timeout_minutes: 5
6464
max_attempts: 3

0 commit comments

Comments
 (0)