diff --git a/.github/workflows/ci-github-actions.yml b/.github/workflows/ci-github-actions.yml index 2ed2ec1..6ffd6f0 100644 --- a/.github/workflows/ci-github-actions.yml +++ b/.github/workflows/ci-github-actions.yml @@ -13,7 +13,7 @@ jobs: actionlint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" diff --git a/.github/workflows/ci-go.yml b/.github/workflows/ci-go.yml index 981fc85..b5e3755 100644 --- a/.github/workflows/ci-go.yml +++ b/.github/workflows/ci-go.yml @@ -17,7 +17,7 @@ jobs: golangci-lint: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" @@ -35,7 +35,7 @@ jobs: matrix: go-version: [ '1.17', '1.16' ] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: actions/setup-go@v2 with: go-version: ${{ matrix.go-version }} diff --git a/.github/workflows/ci-goreleaser.yml b/.github/workflows/ci-goreleaser.yml index b363a67..4a0ef21 100644 --- a/.github/workflows/ci-goreleaser.yml +++ b/.github/workflows/ci-goreleaser.yml @@ -13,7 +13,7 @@ jobs: check: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 3626db4..2b6675a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: goreleaser: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: # Required for release notes fetch-depth: 0