Skip to content

Commit 093db93

Browse files
author
paranerd
committed
Bumped actions versions to latest
1 parent d835d47 commit 093db93

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/docker.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,24 +38,24 @@ jobs:
3838

3939
steps:
4040
- name: Checkout repository
41-
uses: actions/checkout@v3
41+
uses: actions/checkout@v4
4242

4343
- name: Set up QEMU
44-
uses: docker/setup-qemu-action@v2
44+
uses: docker/setup-qemu-action@v3
4545

4646
- name: Set up Docker Buildx
47-
uses: docker/setup-buildx-action@v2
47+
uses: docker/setup-buildx-action@v3
4848

4949
- name: Log in to the Container registry
50-
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
50+
uses: docker/login-action@v3
5151
with:
5252
registry: ${{ env.REGISTRY }}
5353
username: ${{ github.actor }}
5454
password: ${{ secrets.GITHUB_TOKEN }}
5555

5656
- name: Extract metadata (tags, labels) for Docker
5757
id: meta
58-
uses: docker/metadata-action@v4
58+
uses: docker/metadata-action@v5
5959
with:
6060
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
6161
tags: |
@@ -66,7 +66,7 @@ jobs:
6666
type=raw,value=latest,enable=${{ github.ref == format('refs/heads/{0}', 'main') }}
6767
6868
- name: Build and push Docker image
69-
uses: docker/build-push-action@v4
69+
uses: docker/build-push-action@v5
7070
with:
7171
context: .
7272
push: true

0 commit comments

Comments
 (0)