From 8c93d4539d83cfae0567a6816e5ec635bbcca688 Mon Sep 17 00:00:00 2001 From: zeeket Date: Sun, 26 May 2024 15:57:25 +0300 Subject: [PATCH] update docker workflow to use newer node --- .github/workflows/create-publish-docker-image.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/create-publish-docker-image.yml b/.github/workflows/create-publish-docker-image.yml index a08777a..abd6109 100644 --- a/.github/workflows/create-publish-docker-image.yml +++ b/.github/workflows/create-publish-docker-image.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Get current branch and exit if not main run: | @@ -31,7 +31,7 @@ jobs: fi - name: Log in to the Container registry - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.actor }} @@ -39,12 +39,12 @@ jobs: - name: Extract metadata (tags, labels) for Docker id: meta - uses: docker/metadata-action@v4 + uses: docker/metadata-action@v5 with: images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: Build and push Docker image - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v5 with: push: true tags: ${{ steps.meta.outputs.tags }}