From 6d54ab45497353c841c401dc4f7bc2bdb01bcd03 Mon Sep 17 00:00:00 2001 From: Brad Sickles Date: Tue, 16 Dec 2025 11:58:37 -0500 Subject: [PATCH] Download modules before running goreleaser --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be9e71f..e2f2f49 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,14 +12,14 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: fetch-depth: 0 - name: Set up Go uses: actions/setup-go@v4 with: - go-version: "1.21" + go-version: "1.24" - name: Install Snapcraft uses: samuelmeuli/action-snapcraft@v2 @@ -34,6 +34,9 @@ jobs: app-id: ${{ vars.BOT_APP_ID }} private-key: ${{ secrets.BOT_PRIVATE_KEY }} + - name: Download go modules + run: go mod download + - name: Run GoReleaser uses: goreleaser/goreleaser-action@v4 with: