diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0704e55..b083e44 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,6 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - go-version: ['1.25'] steps: - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 @@ -24,7 +23,7 @@ jobs: - name: Set up Go uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: - go-version: ${{ matrix.go-version }} + go-version-file: go.mod cache: false - name: Build without CGo @@ -45,7 +44,7 @@ jobs: - name: Set up Go uses: actions/setup-go@b7ad1dad31e06c5925ef5d2fc7ad053ef454303e # v7.0.0 with: - go-version: '1.25' + go-version-file: go.mod cache: false - name: golangci-lint diff --git a/go.mod b/go.mod index 607fffd..06785b7 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,5 @@ module github.com/git-pkgs/magic -go 1.25.6 +go 1.26 + +toolchain go1.26.7