diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a6f131353..0122f29e6 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -61,6 +61,7 @@ jobs: ImageOS: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.goarm }} with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: Artifact webui uses: actions/download-artifact@v4 diff --git a/.github/workflows/experimental.yaml b/.github/workflows/experimental.yaml index b089beabc..76959bbd5 100644 --- a/.github/workflows/experimental.yaml +++ b/.github/workflows/experimental.yaml @@ -33,6 +33,7 @@ jobs: ImageOS: ${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.goarm }} with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: Build run: make generate binary diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index f69ccda73..821d639d3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -41,6 +41,7 @@ jobs: ImageOS: ${{ matrix.os }} with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: Artifact webui uses: actions/download-artifact@v4 diff --git a/.github/workflows/test-integration.yaml b/.github/workflows/test-integration.yaml index 10fe2ca44..f8eac5dc6 100644 --- a/.github/workflows/test-integration.yaml +++ b/.github/workflows/test-integration.yaml @@ -28,6 +28,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: Avoid generating webui run: touch webui/static/index.html @@ -55,6 +56,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: Avoid generating webui run: touch webui/static/index.html diff --git a/.github/workflows/test-unit.yaml b/.github/workflows/test-unit.yaml index 5550ec1cd..7d4a0fa66 100644 --- a/.github/workflows/test-unit.yaml +++ b/.github/workflows/test-unit.yaml @@ -27,6 +27,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: Avoid generating webui run: touch webui/static/index.html diff --git a/.github/workflows/validate.yaml b/.github/workflows/validate.yaml index cb058b98b..dcc04732e 100644 --- a/.github/workflows/validate.yaml +++ b/.github/workflows/validate.yaml @@ -25,6 +25,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: golangci-lint uses: golangci/golangci-lint-action@v6 @@ -44,6 +45,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: Install misspell ${{ env.MISSPELL_VERSION }} run: curl -sfL https://raw.githubusercontent.com/golangci/misspell/master/install-misspell.sh | sh -s -- -b $(go env GOPATH)/bin ${MISSPELL_VERSION} @@ -67,6 +69,7 @@ jobs: uses: actions/setup-go@v5 with: go-version: ${{ env.GO_VERSION }} + check-latest: true - name: go generate run: |