Skip to content

Commit

Permalink
build(deps): bump actions/setup-go from 2 to 3 (#4574)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Apr 11, 2022
1 parent d618ba3 commit c9606c0
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: echo "::set-output name=go_version::$(cat .go-version)"

- name: Install Go (${{ steps.go_version.outputs.go_version }})
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.go_version.outputs.go_version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: echo "::set-output name=go_version::$(cat .go-version)"

- name: Install Go (${{ steps.go_version.outputs.go_version }})
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.go_version.outputs.go_version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post-merge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
run: echo "::set-output name=go_version::$(cat .go-version)"

- name: Install Go (${{ steps.go_version.outputs.go_version }})
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.go_version.outputs.go_version }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/post-tag.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
run: echo "::set-output name=go_version::$(cat .go-version)"

- name: Install Go (${{ steps.go_version.outputs.go_version }})
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.go_version.outputs.go_version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
run: echo "::set-output name=go_version::$(cat .go-version)"

- name: Install Go (${{ steps.go_version.outputs.go_version }})
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.go_version.outputs.go_version }}
if: matrix.os == 'darwin'
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
run: echo "::set-output name=go_version::$(cat .go-version)"

- name: Install Go (${{ steps.go_version.outputs.go_version }})
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: ${{ steps.go_version.outputs.go_version }}

Expand Down Expand Up @@ -294,7 +294,7 @@ jobs:
uses: actions/download-artifact@v2
with:
name: generated
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: ${{ matrix.version }}
- run: make build
Expand Down

0 comments on commit c9606c0

Please sign in to comment.