diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index b6417e1..051c1b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -13,15 +13,15 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - go-version: [1.18.x, 1.20.x] + go-version: [1.18.x, 1.21.x] steps: - name: Setup Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v4 with: go-version: ${{ matrix.go-version }} - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run coverage run: go test ./... -coverprofile=coverage.out -covermode=atomic diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 12218ea..2209ddf 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: golangci-lint uses: golangci/golangci-lint-action@v3