diff --git a/.github/workflows/build-test-app.yml b/.github/workflows/build-test-app.yml index 1b5137fdb0..8676a9fb72 100644 --- a/.github/workflows/build-test-app.yml +++ b/.github/workflows/build-test-app.yml @@ -31,7 +31,7 @@ jobs: TAGS="${{ env.REGISTRY }}/${{ env.REPOSITORY }}:latest" echo "tags=$TAGS" >> $GITHUB_OUTPUT - name: Push Image to repo - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: test/app push: true diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 80919cccf6..3f63b1ccf5 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -35,7 +35,7 @@ jobs: TAGS="${REPOSITORY}:${TAG}" echo "tags=$TAGS" >> $GITHUB_OUTPUT - name: Push Atlas Operator to Registry - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: . push: true diff --git a/.github/workflows/rebuild-released-images.yaml b/.github/workflows/rebuild-released-images.yaml index 0f024ffd8b..f8d1b072de 100644 --- a/.github/workflows/rebuild-released-images.yaml +++ b/.github/workflows/rebuild-released-images.yaml @@ -85,7 +85,7 @@ jobs: run: | go mod download - name: Build and push operator to the DockerHub (daily-tag) - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: . build-args: VERSION=${{ matrix.version }} @@ -95,7 +95,7 @@ jobs: cache-to: type=gha,mode=max push: true - name: Build and push operator to the DockerHub (release-tag) - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: context: . build-args: VERSION=${{ matrix.version }} diff --git a/.github/workflows/release-post-install-hook.yml b/.github/workflows/release-post-install-hook.yml index a23e9a9858..e6a5d6e8fa 100644 --- a/.github/workflows/release-post-install-hook.yml +++ b/.github/workflows/release-post-install-hook.yml @@ -61,7 +61,7 @@ jobs: TAGS="${REPOSITORY}:${TAG}" echo "tags=$TAGS" >> $GITHUB_OUTPUT - name: Push Post Install Hook To Registry - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v5 with: push: true context: .