diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92381c1..7e055bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,7 +17,7 @@ jobs: contents: read steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: go.mod cache: true @@ -32,7 +32,7 @@ jobs: steps: - uses: actions/checkout@v4 # golangci-lint-action manages its own Go cache; disable setup-go caching to avoid conflicts - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: go.mod cache: false @@ -47,7 +47,7 @@ jobs: contents: read steps: - uses: actions/checkout@v4 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 with: go-version-file: go.mod cache: true diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bff71fe..5ee1c5a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-go@v5 + - uses: actions/setup-go@v6 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@v5 + - uses: actions/setup-go@v6 with: go-version: 1.23.2 - name: Run GoReleaser