Skip to content

Commit

Permalink
Merge pull request #400 from Codeinwp/fix/tag
Browse files Browse the repository at this point in the history
fix: update Node.js version and setup actions in workflows
  • Loading branch information
Soare-Robert-Daniel authored Nov 5, 2024
2 parents f5ae10b + 6b95696 commit 9e629c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/create-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,16 @@ jobs:
if: "! contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
node-version: [14.x]
node-version: [18.x]
steps:
- uses: actions/checkout@master
with:
persist-credentials: false
- name: Build files using ${{ matrix.node-version }}
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Release new version
id: release
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
steps:
- uses: actions/checkout@master
- name: Setup Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: lts/hydrogen # 18.x
cache: "yarn"
- name: Build
run: |
yarn install --frozen-lockfile
Expand Down

0 comments on commit 9e629c0

Please sign in to comment.