diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d08625f..d00810f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -8,12 +8,12 @@ jobs: build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: - go-version: '1.22' + go-version: '1.23' - name: Test run: go test -v ./... @@ -22,7 +22,7 @@ jobs: run: go vet ./... - name: Staticcheck - uses: dominikh/staticcheck-action@v1.3.0 + uses: dominikh/staticcheck-action@v1.3.1 with: - version: '2023.1.7' + version: '2024.1.1' install-go: false diff --git a/go.mod b/go.mod index a4a5726..2d00016 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ module github.com/petaki/inertia-go -go 1.22 +go 1.23