Skip to content

Commit 79ee1b6

Browse files
committed
CI: Update action versions [skipcircle]
1 parent 71685eb commit 79ee1b6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/docker.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,27 +25,27 @@ jobs:
2525
packages: write
2626
steps:
2727
- name: Checkout repository
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929

3030
- name: Setup Docker buildx
31-
uses: docker/setup-buildx-action@v2
31+
uses: docker/setup-buildx-action@v3
3232

3333
- name: Log into registry ${{ env.REGISTRY }}
3434
if: github.event_name != 'pull_request'
35-
uses: docker/login-action@v2
35+
uses: docker/login-action@v3
3636
with:
3737
registry: ${{ env.REGISTRY }}
3838
username: ${{ github.actor }}
3939
password: ${{ secrets.GITHUB_TOKEN }}
4040

4141
- name: Extract Docker metadata
4242
id: meta
43-
uses: docker/metadata-action@v4
43+
uses: docker/metadata-action@v5
4444
with:
4545
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4646

4747
- name: Build and push Docker image
48-
uses: docker/build-push-action@v4
48+
uses: docker/build-push-action@v6
4949
with:
5050
context: .
5151
push: ${{ github.event_name != 'pull_request' }}

0 commit comments

Comments
 (0)