diff options
author | Liran Tal <liran.tal@gmail.com> | 2024-04-26 17:47:17 +0000 |
---|---|---|
committer | Liran Tal <liran.tal@gmail.com> | 2024-04-26 17:47:17 +0000 |
commit | 951cfccd72b9ca60b2b5c2ed09b8ccb3360ee5a1 (patch) | |
tree | 2c8886f5cbb7e4216851f0f0b775443f7f39279b | |
parent | c83e34491d558c9d708ae46e552a3a0c541e04fc (diff) |
fix: update Node.js runtime support for latest semantic-release versions
-rw-r--r-- | .github/workflows/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 178cc9e..41d98c0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -7,7 +7,7 @@ jobs: strategy: matrix: platform: [ubuntu-latest] - node: ['14', '16', '18'] + node: ['14', '16', '18', '20'] name: lint runs-on: ${{ matrix.platform }} steps: @@ -29,7 +29,7 @@ jobs: - uses: actions/checkout@v3 - uses: actions/setup-node@v3 with: - node-version: '18' + node-version: '20' - name: install dependencies run: yarn install --frozen-lockfile --ignore-engines --ignore-scripts - name: release |