diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 00143f5..4d8320f 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 dbf5577..584b920 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 a5181a5..8718247 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 0e22d58..eaa885a 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 ./...