Skip to content

Commit

Permalink
ci: anything using node-version 16 now uses 18
Browse files Browse the repository at this point in the history
  • Loading branch information
gobengo committed Mar 20, 2024
1 parent 7d4c838 commit e3fc4f6
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cron-dagcargo-sizes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
git checkout $LATEST_TAG
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- name: Run job
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-metrics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
git checkout $LATEST_TAG
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- name: Run job
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-nft-ttr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
git checkout $LATEST_TAG
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- name: Run job
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-pins-failed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
git checkout $LATEST_TAG
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- name: Run job
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-pins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
git checkout $LATEST_TAG
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- name: Run job
env:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cron.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- run: yarn workspace nft.storage prepare
- run: yarn workspace cron lint
Expand All @@ -34,7 +34,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- run: yarn workspace nft.storage prepare
- run: yarn workspace cron typecheck
Expand All @@ -46,7 +46,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- name: Test (ES)
run: yarn --cwd packages/cron test
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- name: Publish app
uses: cloudflare/[email protected]
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- run: ./packages/tools/cli.js dns --name nft.storage --token ${{ secrets.CF_API_TOKEN }} --zone ${{ secrets.CF_ZONE }} --content ${{ github.event.inputs.frontend_cname }}
- run: echo "::warning::https://nft.storage"
Expand All @@ -54,7 +54,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- run: ./packages/tools/cli.js dns --name staging.nft.storage --token ${{ secrets.CF_API_TOKEN }} --zone ${{ secrets.CF_ZONE }} --content ${{ github.event.inputs.frontend_cname }}
- run: echo "::warning::https://staging.nft.storage"
Expand All @@ -65,7 +65,7 @@ jobs:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '16'
node-version: '18'
- uses: bahmutov/npm-install@v1
- run: ./packages/tools/cli.js dns --name dev.nft.storage --token ${{ secrets.CF_API_TOKEN }} --zone ${{ secrets.CF_ZONE }} --content ${{ github.event.inputs.frontend_cname }}
- run: echo "::warning::https://dev.nft.storage"

0 comments on commit e3fc4f6

Please sign in to comment.