diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f1a41c5..889f3b8 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,12 +15,13 @@ jobs: matrix: make: ["lint", "test"] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 - name: install go - uses: actions/setup-go@v2 + uses: actions/setup-go@v3 with: - go-version: "^1.19" + go-version: "1.19" + cache: true - name: Lint run: make ${{ matrix.make }} @@ -33,7 +34,7 @@ jobs: matrix: goosarch: [linux-amd64] steps: - - uses: actions/checkout@v2.4.0 + - uses: actions/checkout@v3 with: fetch-depth: 0