Skip to content

Commit

Permalink
Bump workflow node versions, disable cron jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangoree committed Jan 19, 2024
1 parent 9a1b62e commit 86429ab
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: "14.x"
node-version: "16.x"
- run: yarn
- run: yarn workspaces run lint
- run: yarn run stylelint:check
5 changes: 3 additions & 2 deletions .github/workflows/nightly-merge.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: 'Nightly Merge'

on:
schedule:
- cron: '*/5 * * * *'
workflow_dispatch:
# schedule:
# - cron: '*/5 * * * *'

jobs:
nightly-merge:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/prettier.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ jobs:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: "14.x"
node-version: "16.x"
- run: yarn
- run: yarn workspaces run prettier:check
7 changes: 4 additions & 3 deletions .github/workflows/update-core-v2-typechain.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: update-core-v2-typechain

on:
workflow_dispatch:
# Triggers the workflow every day at 6pm ET (22 UTC)
# https://crontab.guru/#0_22_*_*_*
schedule:
- cron: "0 22 * * *"
# schedule:
# - cron: "0 22 * * *"

jobs:
update_routes:
Expand All @@ -14,7 +15,7 @@ jobs:
- uses: actions/setup-node@v3
with:
persist-credentials: false
node-version: "14"
node-version: "16"
cache: yarn
- run: npm install -g yarn
- run: yarn install --frozen-lockfile
Expand Down
7 changes: 4 additions & 3 deletions .github/workflows/update-delegates.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
name: Update delegates.json

on:
workflow_dispatch:
# Triggers the workflow every 2 weeks (the 1 and 15 of the month @ 1am)
# https://crontab.guru/#0_1_1,15_*_*
schedule:
- cron: "0 1 1,15 * *"
# schedule:
# - cron: "0 1 1,15 * *"

jobs:
update_routes:
Expand All @@ -14,7 +15,7 @@ jobs:
- uses: actions/setup-node@v3
with:
persist-credentials: false
node-version: "14"
node-version: "16"
cache: yarn
- run: npm install -g yarn
- run: yarn install --frozen-lockfile
Expand Down

0 comments on commit 86429ab

Please sign in to comment.