diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a7cda5c..d436df1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: contents: read steps: - uses: actions/checkout@v7 - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: go.mod cache: true @@ -30,7 +30,7 @@ jobs: steps: - uses: actions/checkout@v7 # golangci-lint-action manages its own Go cache; disable setup-go caching to avoid conflicts - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: go.mod cache: false @@ -45,7 +45,7 @@ jobs: contents: read steps: - uses: actions/checkout@v7 - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: go.mod cache: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42de611..f5eca2a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v7 with: fetch-depth: 0 - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: go.mod cache: true @@ -37,7 +37,7 @@ jobs: fetch-depth: 0 - name: Fetch all tags run: git fetch --force --tags - - uses: actions/setup-go@v6 + - uses: actions/setup-go@v7 with: go-version-file: go.mod - name: Run GoReleaser