Skip to content

Commit 66168f6

Browse files
Merge pull request RealDevSquad#173 from Real-Dev-Squad/refactor/github-workflows
Downgrade node version in actions runner
2 parents e1a6486 + 1b19ecf commit 66168f6

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

.github/workflows/register-commands-production.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
environment: production
99
steps:
1010
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v3
12+
with:
13+
node-version: 18.18.2
1114
- run: npm install
1215
- run: npm run register
1316
env:

.github/workflows/register-commands-staging.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
environment: staging
99
steps:
1010
- uses: actions/checkout@v2
11+
- uses: actions/setup-node@v3
12+
with:
13+
node-version: 18.18.2
1114
- run: npm install
1215
- run: npm run register
1316
env:

0 commit comments

Comments
 (0)