From de9e20a4928695e5a99eaabe365bf1d376a8409f Mon Sep 17 00:00:00 2001 From: danjov Date: Fri, 9 Aug 2024 08:22:20 +0200 Subject: [PATCH] Update GitHub action workflows --- .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 90a0c73..09f52d8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: Set environment variables run: | @@ -31,7 +31,7 @@ jobs: - name: Collect Docker image metadata id: meta - uses: docker/metadata-action@v3 + uses: docker/metadata-action@v5 with: images: ${{ env.IMAGE_NAME }} labels: | @@ -42,14 +42,14 @@ jobs: type=semver,pattern=v{{version}} - name: Log in to the GitHub container registry - uses: docker/login-action@v1 + uses: docker/login-action@v3 with: registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - name: Build and push Docker image - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v5 with: context: . push: true