Skip to content

Commit

Permalink
Bump nodejs version for ggithub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
ivandiazwm committed May 27, 2024
1 parent 7d5489a commit bcdefe7
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/actions/testSubgraph/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ runs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install subgraph dependencies
working-directory: ./subgraph
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'
cache: 'yarn'
- run: yarn install --frozen-lockfile

Expand All @@ -44,7 +44,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'
cache: 'yarn'
- run: yarn install --frozen-lockfile

Expand All @@ -64,7 +64,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '14'
node-version: '18'
cache: 'yarn'
- run: yarn install --frozen-lockfile

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-subgraph-theGraph-a.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install the graph cli
run: npm install @graphprotocol/graph-cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-subgraph-theGraph-b.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install the graph cli
run: npm install @graphprotocol/graph-cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-subgraph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install the graph cli
run: npm install @graphprotocol/graph-cli
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev-deploy-subgraph.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "16"
node-version: "18"

- name: Install the graph cli
run: npm install @graphprotocol/graph-cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 14.x
node-version: 18.x
- uses: actions/cache@v3.0.3
id: cache
with:
Expand All @@ -36,7 +36,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.x
- name: Install subgraph dependencies
working-directory: ./subgraph
run: npm run install
Expand Down

0 comments on commit bcdefe7

Please sign in to comment.