From 2aa4db83cf4787ec3ef98872691c1b2d4e5e780f Mon Sep 17 00:00:00 2001 From: Tanner Stirrat Date: Tue, 14 Apr 2026 16:24:36 -0600 Subject: [PATCH] chore: fix release process --- .github/workflows/release.yaml | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 0f4763a..efd5dd4 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -1,3 +1,4 @@ +# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json --- name: "Release" on: @@ -16,20 +17,20 @@ jobs: lfs: "true" submodules: "recursive" - name: "Set up QEMU" - uses: "docker/setup-qemu-action@v3" + uses: "docker/setup-qemu-action@v4" - name: "Set up Docker Buildx" - uses: "docker/setup-buildx-action@v3" + uses: "docker/setup-buildx-action@v4" with: platforms: linux/amd64,linux/arm64,linux/arm/v8 - name: "Log in to quay, ghcr and dockerhub" - uses: "authzed/actions/docker-login@11667c9b2e8b3649ad2af4d788e57d18f8e8eaf1" # main + uses: "authzed/actions/docker-login@main" with: quayio_token: "${{ secrets.QUAYIO_PASSWORD }}" github_token: "${{ secrets.GITHUB_TOKEN }}" dockerhub_token: "${{ secrets.DOCKERHUB_ACCESS_TOKEN }}" - name: "Extract metadata (tags, labels) for Docker" id: meta - uses: "docker/metadata-action@v5.5.1" + uses: "docker/metadata-action@v6" with: images: | quay.io/authzed/spicedb-playground @@ -38,7 +39,7 @@ jobs: tags: | type=semver,pattern={{raw}} - name: "Build and push images to various registries" - uses: "docker/build-push-action@v5.3.0" + uses: "docker/build-push-action@v7" with: context: . platforms: linux/amd64,linux/arm64,linux/arm/v8 @@ -47,9 +48,9 @@ jobs: labels: ${{ steps.meta.outputs.labels }} - name: "Notify Slack if failure" if: "failure()" - uses: "slackapi/slack-github-action@91efab103c0de0a537f72a35f6b8cda0ee76bf0a" # v2.1.1 + uses: "slackapi/slack-github-action@v3" with: - webhook: "${{ secrets.SLACK_WEBHOOK_URL }}" + webhook: "${{ secrets.SLACK_BUILDS_WEBHOOK_URL }}" webhook-type: "incoming-webhook" payload: | text: "*Playground Release Failed*"