From 42893713528992064ca4b14c04984af6d118a7a7 Mon Sep 17 00:00:00 2001 From: Paul Querna Date: Fri, 26 Jun 2026 06:32:21 +0000 Subject: [PATCH] ci: update release workflow actions Move the release workflow's remaining stale actions to their current Node 24 major versions. This updates Apple cert import, GoReleaser, and Docker helper actions while leaving release behavior unchanged. Co-authored-by: c1-squire-dev[bot] --- .github/workflows/release.yaml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 1945db8d..a4beb08e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -20,12 +20,12 @@ jobs: - name: Set up Gon run: brew tap conductorone/gon && brew install conductorone/gon/gon - name: Import Keychain Certs - uses: apple-actions/import-codesign-certs@v1 + uses: apple-actions/import-codesign-certs@v7 with: p12-file-base64: ${{ secrets.APPLE_SIGNING_KEY_P12 }} p12-password: ${{ secrets.APPLE_SIGNING_KEY_P12_PASSWORD }} - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6 + uses: goreleaser/goreleaser-action@v7 with: version: "~> v2" args: release --clean @@ -45,15 +45,15 @@ jobs: with: go-version-file: go.mod - name: Docker Login - uses: docker/login-action@v3 + uses: docker/login-action@v4 with: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.RELENG_GITHUB_TOKEN }} - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 + uses: docker/setup-buildx-action@v4 - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v6 + uses: goreleaser/goreleaser-action@v7 with: version: "~> v2" args: release --clean -f .goreleaser.docker.yaml