From 1d54b89404219524251196c503939fe275499f93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cezary=20Skrzy=C5=84ski?= Date: Mon, 30 Sep 2024 21:59:05 +0200 Subject: [PATCH] #40: update GitHub actions --- .github/workflows/docker-images.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker-images.yml b/.github/workflows/docker-images.yml index 1ae0278..7c58595 100644 --- a/.github/workflows/docker-images.yml +++ b/.github/workflows/docker-images.yml @@ -29,7 +29,7 @@ jobs: - name: Log in to Docker Hub if: ${{ github.ref == 'refs/heads/ci-images' }} - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} @@ -37,10 +37,10 @@ jobs: - name: Pull Cached Image run: docker pull ${{ env.IMAGE_TAG }} continue-on-error: true - + - name: Build Docker images for PR testing if: ${{ github.event_name == 'pull_request' }} - uses: docker/build-push-action@v4 + uses: docker/build-push-action@v6 with: context: . file: ${{ matrix.image }}.dockerfile