diff --git a/.github/workflows/build-and-test.yaml b/.github/workflows/build-and-test.yaml index af38d73..15f1f01 100644 --- a/.github/workflows/build-and-test.yaml +++ b/.github/workflows/build-and-test.yaml @@ -76,7 +76,7 @@ jobs: uses: actions/checkout@v7 # Install the Go version specified in the matrix. - name: Install Go ${{ matrix.go-version }} - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: # Use the Go version from the matrix. go-version: ${{ matrix.go-version }} @@ -106,7 +106,7 @@ jobs: uses: actions/checkout@v7 # Install Go for the build test. - name: Install Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: # Use the configured Go version. go-version: ${{ env.GO_VERSION }} diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index c5c4dde..1f03ebd 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -50,7 +50,7 @@ jobs: # Set up Go environment for building release binaries. - name: Set up Go - uses: actions/setup-go@v6 + uses: actions/setup-go@v7 with: go-version: ${{ env.GO_VERSION }} cache: true