Skip to content

Commit

Permalink
BUMP: CI dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
GreenDjango committed Dec 31, 2023
1 parent 4236bc0 commit 3d9b337
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/node-ci.yml
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand All @@ -33,5 +33,4 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: exit 0
22 changes: 11 additions & 11 deletions .github/workflows/npm-publish.yml
Expand Up @@ -16,8 +16,8 @@ jobs:
# outputs:
# status: ${{ steps.ID.conclusion }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- run: npm ci
Expand Down Expand Up @@ -45,14 +45,14 @@ jobs:
outputs:
status: ${{ steps.check.outputs.changed || false }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Check if version has been updated
id: check
uses: EndBug/version-check@323ba664f1d777a793dd0e570bdb4116665808ad
# This is tagged version v2.1.1, but do not use version tags
uses: EndBug/version-check@8240855b2dbd43fc1c3c628d7aa75cfa07b76ab4
# This is tagged version v2.1.2, but do not use version tags
# https://julienrenaux.fr/2019/12/20/github-actions-security-risk/
with:
diff-search: true
Expand All @@ -62,8 +62,8 @@ jobs:
runs-on: ubuntu-latest
if: needs.test-version.outputs.status == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://registry.npmjs.org/
Expand All @@ -85,8 +85,8 @@ jobs:
runs-on: ubuntu-latest
if: needs.test-version.outputs.status == 'true'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
Expand All @@ -106,7 +106,7 @@ jobs:
needs: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup ssh key
Expand Down

0 comments on commit 3d9b337

Please sign in to comment.