Skip to content

Commit 033e7a4

Browse files
author
Tristan Lee
authored
Merge pull request #134 from edgio-docs/update_workflows
Update workflows to Node 18
2 parents 6a41914 + 7500ebe commit 033e7a4

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

Diff for: _template/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

Diff for: examples/v7-full-featured-performance/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v1
1212
- uses: actions/setup-node@v1
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: npm ci
1616
- run: npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN
1717
env:

Diff for: examples/v7-image-optimization/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

Diff for: examples/v7-jwt-verification/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

Diff for: examples/v7-nextjs-app-router/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

Diff for: examples/v7-nextjs/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

Diff for: examples/v7-nuxt3/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

Diff for: examples/v7-qwik/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

Diff for: examples/v7-react/.github/workflows/edgio.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
- uses: actions/checkout@v3
1212
- uses: actions/setup-node@v3
1313
with:
14-
node-version: 16
14+
node-version: 18
1515
- run: if [ -f yarn.lock ]; then yarn install; else npm ci; fi
1616
- run: if [ -f yarn.lock ]; then yarn edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; else npm run edgio:deploy -- --token=$EDGIO_DEPLOY_TOKEN; fi
1717
env:

0 commit comments

Comments
 (0)