diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e1203c2f3f..d047fdcee4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -17,7 +17,7 @@ jobs: - name: Check out code into the Go module directory uses: actions/checkout@v3 - - name: Set up Go 1.21 + - name: Set up Go uses: actions/setup-go@v4 with: go-version-file: './go.mod' diff --git a/.github/workflows/staticcheck.yml b/.github/workflows/staticcheck.yml index 4320a2f607..a9318e3dc6 100644 --- a/.github/workflows/staticcheck.yml +++ b/.github/workflows/staticcheck.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest"] - go: ["1.21.x"] + go: ["1.23.x"] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1