diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ad1b9d..1cdabce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,20 +2,19 @@ name: ci on: push: - branches: [ "main" ] + branches: ["main"] pull_request: jobs: - test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.24.x' + - name: Set up Go + uses: actions/setup-go@v6 + with: + go-version: "1.25" - - name: Test - run: go test -v ./... + - name: Test + run: go test -v ./... diff --git a/go.mod b/go.mod index 569deff..f43bba9 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/qpoint-io/rulekit -go 1.24.3 +go 1.25.1 require ( github.com/hashicorp/go-multierror v1.1.1