Skip to content

Commit

Permalink
Merge pull request #342 from oasisprotocol/kostko/feature/go-1.21
Browse files Browse the repository at this point in the history
ci: Bump Go to 1.21, refresh actions
  • Loading branch information
kostko committed Jan 30, 2024
2 parents 2632499 + f8d19ad commit 201185d
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-verify-update.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,23 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout base registry
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.base_ref }}
path: snapshot-base
- name: Checkout updated registry
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Check out pull request's HEAD commit instead of the merge commit to
# work-around an issue where wrong a commit is being checked out.
# For more details, see:
# https://github.com/actions/checkout/issues/299.
ref: ${{ github.event.pull_request.head.sha }}
path: snapshot-updated
- name: Set up Go 1.17
uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.17.x"
go-version: "1.21.x"
- name: Install latest metadata-registry-tools
run: |
go install github.com/oasisprotocol/metadata-registry-tools/oasis-registry@latest
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# Check out pull request's HEAD commit instead of the merge commit to
# work-around an issue where wrong a commit is being checked out.
# For more details, see:
# https://github.com/actions/checkout/issues/299.
ref: ${{ github.event.pull_request.head.sha }}
- name: Set up Go 1.17
uses: actions/setup-go@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.17.x"
go-version: "1.21.x"
- name: Install latest metadata-registry-tools
run: |
go install github.com/oasisprotocol/metadata-registry-tools/oasis-registry@latest
Expand Down

0 comments on commit 201185d

Please sign in to comment.