diff --git a/.github/workflows/integration-testing.yml b/.github/workflows/integration-testing.yml index 70ed15c..92adc61 100644 --- a/.github/workflows/integration-testing.yml +++ b/.github/workflows/integration-testing.yml @@ -44,7 +44,7 @@ jobs: echo "APP_IMAGE=public.ecr.aws/aws-otel-test/ruby-${{ matrix.app-platform }}-${{ matrix.instrumentation-type }}:${{ github.sha }}" | tee --append $GITHUB_ENV; - name: Build and Push Docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: push: true context: ${{ env.APP_PATH }} diff --git a/.github/workflows/pr-build.yml b/.github/workflows/pr-build.yml index a020832..aec4381 100644 --- a/.github/workflows/pr-build.yml +++ b/.github/workflows/pr-build.yml @@ -30,7 +30,7 @@ jobs: echo "APP_IMAGE=public.ecr.aws/aws-otel-test/ruby-${{ matrix.app-platform }}-${{ matrix.instrumentation-type }}:${{ github.sha }}" | tee --append $GITHUB_ENV; - name: Build Docker image - uses: docker/build-push-action@v3 + uses: docker/build-push-action@v6 with: context: ${{ env.APP_PATH }} tags: |