diff --git a/.github/workflows/golang.yml b/.github/workflows/golang.yml index fe4289f..1591479 100644 --- a/.github/workflows/golang.yml +++ b/.github/workflows/golang.yml @@ -15,11 +15,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Set up Go tooling - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: - go-version: "1.25" + go-version-file: go.mod - name: Build run: make build - name: Test @@ -28,10 +28,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Git Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Set up Go tooling - uses: actions/setup-go@v4 + uses: actions/setup-go@v6 with: - go-version: "1.25" + go-version-file: go.mod - name: Lint run: make lint