From b0a764e9da9768a185728c36da91e29e44a0f013 Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Mon, 1 Jun 2026 09:37:06 +0200 Subject: [PATCH 1/2] Upgrade superseded actions --- .github/workflows/build_and_push_to_gar.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build_and_push_to_gar.yml b/.github/workflows/build_and_push_to_gar.yml index d6a6695..a2ae397 100644 --- a/.github/workflows/build_and_push_to_gar.yml +++ b/.github/workflows/build_and_push_to_gar.yml @@ -1,4 +1,3 @@ ---- name: build and push to GAR on: push: @@ -27,7 +26,7 @@ jobs: id-token: write steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: fetch-depth: 0 @@ -35,7 +34,7 @@ jobs: run: python -m pip install poetry==${{ env.POETRY_VERSION }} - name: setup python - uses: actions/setup-python@v5 + uses: actions/setup-python@v6 with: python-version: ${{ env.PYTHON_VERSION }} cache: poetry @@ -53,24 +52,24 @@ jobs: run: |- echo TAG=$(git describe --tags --abbrev=7) |tee -a ${GITHUB_OUTPUT} - - uses: docker/setup-buildx-action@v3 + - uses: docker/setup-buildx-action@v4 - id: gcp-auth - uses: google-github-actions/auth@v2 + uses: google-github-actions/auth@v3 with: token_format: access_token service_account: artifact-writer@${{ secrets.GAR_PROJECT_ID }}.iam.gserviceaccount.com workload_identity_provider: projects/${{ secrets.WORKLOAD_IDENTITY_POOL_PROJECT_NUMBER }}/locations/global/workloadIdentityPools/github-actions/providers/github-actions - id: docker-login - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: us-docker.pkg.dev username: oauth2accesstoken password: ${{ steps.gcp-auth.outputs.access_token }} - id: build-and-push - uses: docker/build-push-action@v6 + uses: docker/build-push-action@v7 with: context: refractr/ tags: | From c0f16f1c95a4532d17030dbb6ff3434404e71756 Mon Sep 17 00:00:00 2001 From: Jan Brasna <1784648+janbrasna@users.noreply.github.com> Date: Mon, 1 Jun 2026 09:40:33 +0200 Subject: [PATCH 2/2] =?UTF-8?q?Bump=20patch=20Python=20&=C2=A0Poetry=20ver?= =?UTF-8?q?sions=20in=20build=20pipeline?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build_and_push_to_gar.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_and_push_to_gar.yml b/.github/workflows/build_and_push_to_gar.yml index a2ae397..9335fca 100644 --- a/.github/workflows/build_and_push_to_gar.yml +++ b/.github/workflows/build_and_push_to_gar.yml @@ -11,8 +11,8 @@ on: - v[0-9]+.[0-9]+.[0-9]+ env: - POETRY_VERSION: 1.8.3 - PYTHON_VERSION: 3.11.10 + POETRY_VERSION: 1.8.5 + PYTHON_VERSION: 3.11.15 jobs: build-and-push: