diff --git a/.github/workflows/ci-github-actions.yml b/.github/workflows/ci-github-actions.yml index 6ffd6f059..ba790468e 100644 --- a/.github/workflows/ci-github-actions.yml +++ b/.github/workflows/ci-github-actions.yml @@ -17,7 +17,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - run: go install github.com/rhysd/actionlint/cmd/actionlint@latest diff --git a/.github/workflows/ci-go.yml b/.github/workflows/ci-go.yml index 77be70bde..24836b609 100644 --- a/.github/workflows/ci-go.yml +++ b/.github/workflows/ci-go.yml @@ -21,7 +21,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - run: go mod download @@ -36,7 +36,7 @@ jobs: go-version: [ '1.18', '1.17' ] steps: - uses: actions/checkout@v3 - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ matrix.go-version }} - run: go mod download diff --git a/.github/workflows/ci-goreleaser.yml b/.github/workflows/ci-goreleaser.yml index 4a0ef21d3..ecf774075 100644 --- a/.github/workflows/ci-goreleaser.yml +++ b/.github/workflows/ci-goreleaser.yml @@ -17,7 +17,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - uses: goreleaser/goreleaser-action@v2 diff --git a/.github/workflows/ci-protobuf.yml b/.github/workflows/ci-protobuf.yml index 40d7b07e3..f5aa956df 100644 --- a/.github/workflows/ci-protobuf.yml +++ b/.github/workflows/ci-protobuf.yml @@ -22,7 +22,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - uses: arduino/setup-protoc@v1 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2b6675a08..9f37e2afa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,7 +22,7 @@ jobs: - id: go-version # Reference: https://github.com/actions/setup-go/issues/23 run: echo "::set-output name=version::$(cat ./.go-version)" - - uses: actions/setup-go@v2 + - uses: actions/setup-go@v3 with: go-version: ${{ steps.go-version.outputs.version }} - name: Generate Release Notes