Skip to content

Commit 396ab45

Browse files
committed
Bump github action versions to fix warnings.
1 parent b2ff63f commit 396ab45

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/builder.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -18,28 +18,28 @@ jobs:
1818
steps:
1919
# Get the repository's code
2020
- name: Checkout
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v4
2222
# https://github.com/docker/setup-qemu-action
2323
- name: Set up QEMU
24-
uses: docker/setup-qemu-action@v1
24+
uses: docker/setup-qemu-action@v3
2525
# https://github.com/docker/setup-buildx-action
2626
- name: Set up Docker Buildx
2727
id: buildx
28-
uses: docker/setup-buildx-action@v1
28+
uses: docker/setup-buildx-action@v3
2929
- name: Login to GHCR
30-
uses: docker/login-action@v1
30+
uses: docker/login-action@v4
3131
with:
3232
registry: ghcr.io
3333
username: ${{ github.repository_owner }}
3434
password: ${{ secrets.GITHUB_TOKEN }}
3535
- name: Login to Docker Hub
36-
uses: docker/login-action@v1
36+
uses: docker/login-action@v4
3737
with:
3838
username: ${{ secrets.DOCKERHUB_USERNAME }}
3939
password: ${{ secrets.DOCKERHUB_TOKEN }}
4040
- name: Docker meta
4141
id: docker_meta_tag_step # you'll use this in the next step
42-
uses: docker/metadata-action@v3
42+
uses: docker/metadata-action@v4
4343
with:
4444
# list of Docker images to use as base name for tags
4545
images: |

0 commit comments

Comments
 (0)