diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index d0311f6..4d1c94c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -14,12 +14,12 @@ jobs: steps: - name: 🔔 checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: 🔧 set up node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: '17' + node-version: '21' - name: 📦 install dependencies run: npm ci diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index ad9ac77..109cd6b 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -12,12 +12,12 @@ jobs: steps: - name: 🔔 checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 - name: 🔧 set up node - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: - node-version: '17' + node-version: '21' - name: 📦 install dependencies run: npm ci @@ -29,7 +29,7 @@ jobs: run: npm test - name: 🚀 npm publish - uses: JS-DevTools/npm-publish@v1 + uses: JS-DevTools/npm-publish@v3 with: token: ${{ secrets.NPM_TOKEN }}