Skip to content

Commit

Permalink
Update actions/setup-go action to v3 (#150)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <bot@renovateapp.com>
  • Loading branch information
renovate[bot] and renovate-bot authored Feb 28, 2022
1 parent 8defc1c commit 8acf3fa
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: windows-latest
steps:
- name: Setup go 1.17
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17.0
- name: Checkout code
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup go 1.17
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17.0
- name: Checkout code
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup go 1.17
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17.0
- name: Checkout code
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
echo "func (a SortedDir) Less(i, j int) bool { return a[i].Name() < a[j].Name() }" >> path/src/io/fs/readdir.go
echo "func (a SortedDir) Swap(i, j int) { a[i], a[j] = a[j], a[i] }" >> path/src/io/fs/readdir.go
- name: Setup go 1.9.7
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with: { go-version: '1.9.7' }
- name: Build
run: |
Expand All @@ -163,7 +163,7 @@ jobs:
fail-fast: false
steps:
- name: Setup go 1.17
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with:
go-version: 1.17.0
- name: Checkout code
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
os: [ macos-latest, windows-latest, ubuntu-latest ]
steps:
- name: Setup go 1.16
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with: { go-version: '1.16' }
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup go 1.16
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with: { go-version: 1.16 }
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Setup go 1.16
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with: { go-version: '1.16' }
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -169,7 +169,7 @@ jobs:
echo "func (a SortedDir) Less(i, j int) bool { return a[i].Name() < a[j].Name() }" >> path/src/io/fs/readdir.go
echo "func (a SortedDir) Swap(i, j int) { a[i], a[j] = a[j], a[i] }" >> path/src/io/fs/readdir.go
- name: Setup go 1.9.7
uses: actions/setup-go@v2
uses: actions/setup-go@v3
with: { go-version: '1.9.7' }

- name: Build
Expand Down

0 comments on commit 8acf3fa

Please sign in to comment.