From 9ff014756f2645a851c09e4d6dcec2666a0ae227 Mon Sep 17 00:00:00 2001 From: Volodymyr Komarov Date: Tue, 9 May 2023 00:09:46 +0300 Subject: [PATCH] Upgrade release actions --- .github/workflows/release.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ad8a10f..cb68f6b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,7 +28,7 @@ jobs: # https://github.com/docker/login-action - name: Login to Docker Hub if: github.event_name != 'pull_request' - uses: docker/login-action@v1 + uses: docker/login-action@v2 with: username: ${{ secrets.DOCKER_HUB_USER }} password: ${{ secrets.DOCKER_HUB_TOKEN }} @@ -38,7 +38,7 @@ jobs: - name: Extract Docker metadata if: github.event_name != 'pull_request' id: meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v4 with: images: ${{ env.REPO }} tags: | @@ -55,7 +55,7 @@ jobs: # Build and push Docker image with Build (don't push on PR) # https://github.com/docker/build-push-action - name: Build and push - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v4 with: context: . push: ${{ github.event_name != 'pull_request' }} @@ -96,7 +96,7 @@ jobs: - name: Extract Docker metadata if: github.event_name != 'pull_request' id: meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v4 with: images: ${{ env.REPO }} tags: |