diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 842be0d..002fe6f 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -22,7 +22,7 @@ jobs: go-version: 1.20.x - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build source code run: go build ./... diff --git a/.github/workflows/misspell.yml b/.github/workflows/misspell.yml index 2a03f39..cd2284c 100644 --- a/.github/workflows/misspell.yml +++ b/.github/workflows/misspell.yml @@ -22,7 +22,7 @@ jobs: go-version: 1.20.x - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Spellcheck run: | diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 92525e7..dbc1bdf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index c6d5198..daf6bb7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -22,7 +22,7 @@ jobs: go-version: 1.20.x - name: Check out code into the Go module directory - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Build run: go build ./...