Skip to content

Commit

Permalink
Update actions/checkout action to v2 (#33)
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 committed Oct 20, 2020
1 parent 26fee81 commit 8e83efd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
uses: actions/setup-go@v2
with: {go-version: 1.14}
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Download dependencies
run: go mod download

Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
uses: actions/setup-go@v2
with: {go-version: '1.14'}
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v2
- name: Download dependencies
run: go mod download

Expand Down Expand Up @@ -96,6 +96,6 @@ jobs:
- run: go get -u github.com/cugu/godoc2readme

- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v2
- run: godoc2readme --template docs/readme-template.md . > README2.md
- run: diff README.md README2.md
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/setup-go@v2
with: {go-version: '1.14'}
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v2

- name: Build
run: go build .
Expand Down

0 comments on commit 8e83efd

Please sign in to comment.