diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 7197fed..f250acd 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -5,24 +5,23 @@ name: Go on: push: - branches: [ "main" ] + branches: ["main"] pull_request: - branches: [ "main" ] + branches: ["main"] jobs: - build: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v3 - - name: Set up Go - uses: actions/setup-go@v3 - with: - go-version: 1.19.5 + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.25.4 - - name: Build - run: go build -v ./... + - name: Build + run: go build -v ./... - - name: Test - run: go test -v ./... + - name: Test + run: go test -v ./... diff --git a/go.mod b/go.mod index ef19bb9..eba1a38 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/jabley/httptraced -go 1.19 +go 1.25 require github.com/ogier/pflag v0.0.1