diff --git a/.github/workflows/on-push-to-main-branch.yml b/.github/workflows/on-push-to-main-branch.yml index 84fa9936..8b473f29 100644 --- a/.github/workflows/on-push-to-main-branch.yml +++ b/.github/workflows/on-push-to-main-branch.yml @@ -38,7 +38,7 @@ jobs: echo TAG_BASE=$TAG_BASE >> $GITHUB_ENV echo PLUGIN_VERSION=$PLUGIN_VERSION >> $GITHUB_ENV - name: Build and push container images - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v6 with: build-args: | pkg_version=${{ env.PLUGIN_VERSION }} diff --git a/.github/workflows/on-release.yml b/.github/workflows/on-release.yml index 0e44c0c4..26dd36da 100644 --- a/.github/workflows/on-release.yml +++ b/.github/workflows/on-release.yml @@ -39,7 +39,7 @@ jobs: export TAG_BASE=${{ env.ECR_REPO }}/$(echo $GITHUB_REPOSITORY | sed s#/#-#) echo TAG_BASE=$TAG_BASE >> $GITHUB_ENV - name: Build and push container images - uses: docker/build-push-action@v2 + uses: docker/build-push-action@v6 with: build-args: | pkg_version=${{ steps.tag.outputs.tag }}