Skip to content

Commit 19d7658

Browse files
authored
fix: deployment ci for bellecour network (#61)
1 parent 50c2594 commit 19d7658

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

.github/workflows/coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v5
1212

1313
- name: Init
1414
run: npm ci

.github/workflows/deploy-subgraph-studio.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
# Associate the job with a GitHub Environment which has pre-defined variables and secrets.
2828
environment: ${{ github.event.inputs.network }}
2929
steps:
30-
- uses: actions/checkout@v4
30+
- uses: actions/checkout@v5
3131

32-
- uses: actions/setup-node@v4
32+
- uses: actions/setup-node@v5
3333
with:
3434
node-version: '20'
3535
cache: 'npm'

.github/workflows/deploy-subgraph.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,17 @@ jobs:
2424
node-version: 20
2525

2626
deploy:
27-
runs-on: ubuntu-latest
27+
runs-on:
28+
group: Azure_runners
29+
needs: build-and-test
2830
# Associate the job with a GitHub Environment which has pre-defined variables and secrets.
2931
environment: ${{ github.event.inputs.environment }}
3032
steps:
3133
- name: Checkout
32-
uses: actions/checkout@v4
34+
uses: actions/checkout@v5
3335

3436
- name: Set up Node.js
35-
uses: actions/setup-node@v4
37+
uses: actions/setup-node@v5
3638
with:
3739
node-version: '20'
3840
cache: 'npm'

.github/workflows/docker-push.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
computed_tag: ${{ steps.set_tag.outputs.computed_tag }}
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818

1919
- name: Set image tag
2020
id: set_tag

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020

2121
steps:
2222
- name: Checkout
23-
uses: actions/checkout@v4
23+
uses: actions/checkout@v5
2424

2525
- name: Set up Node.js
26-
uses: actions/setup-node@v4
26+
uses: actions/setup-node@v5
2727
with:
2828
node-version: 20
2929
cache: 'npm'

0 commit comments

Comments
 (0)