Skip to content

Commit

Permalink
update node version across all GHAs
Browse files Browse the repository at this point in the history
  • Loading branch information
geoknee committed Oct 12, 2023
1 parent 27aeaa5 commit fbdcc92
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 13 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/bindings-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ on:
pull_request:
paths:
[
'packages/nitro-protocol/contracts/**',
'generate-adjudicator-bindings.sh',
'.github/workflows/bindings-check.yml',
'node/engine/chainservice/adjudicator/NitroAdjudicator.go',
'node/engine/chainservice/consensusapp/ConsensusApp.go',
'node/engine/chainservice/erc20/Token.go',
'node/engine/chainservice/virtualpaymentapp/VirtualPaymentApp.go'
"packages/nitro-protocol/contracts/**",
"generate-adjudicator-bindings.sh",
".github/workflows/bindings-check.yml",
"node/engine/chainservice/adjudicator/NitroAdjudicator.go",
"node/engine/chainservice/consensusapp/ConsensusApp.go",
"node/engine/chainservice/erc20/Token.go",
"node/engine/chainservice/virtualpaymentapp/VirtualPaymentApp.go",
]
jobs:
build:
Expand All @@ -21,8 +21,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '18.15.0'
cache: 'yarn'
node-version: "20.0.0"
cache: "yarn"

- name: Install go-ethereum (includes abigen)
run: go install github.com/ethereum/go-ethereum
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "18.15.0"
node-version: "20.0.0"
cache: "yarn"
- name: Install dependencies
run: yarn
Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/yarn-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@ name: Yarn build and lint

on:
pull_request:
paths: ['packages/**/*.ts', 'packages/**/*.tsx', 'packages/**/*.js', 'packages/**/*.jsx', 'packages/**/*.json', 'packages/**/*.md']
paths:
[
"packages/**/*.ts",
"packages/**/*.tsx",
"packages/**/*.js",
"packages/**/*.jsx",
"packages/**/*.json",
"packages/**/*.md",
]
workflow_dispatch:
jobs:
build-and-lint:
Expand All @@ -11,8 +19,8 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
cache: 'yarn'
node-version: "18.15.0"
cache: "yarn"
node-version: "20.0.0"
- name: Install dependencies
run: yarn
- name: Build everything
Expand Down

0 comments on commit fbdcc92

Please sign in to comment.