diff --git a/.github/workflows/CI-CD.yaml b/.github/workflows/CI-CD.yaml index ce00951..22d20ae 100644 --- a/.github/workflows/CI-CD.yaml +++ b/.github/workflows/CI-CD.yaml @@ -15,10 +15,10 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: '20.x' cache: 'yarn' @@ -44,10 +44,10 @@ jobs: if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master') steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@v5 - name: Setup Node.js - uses: actions/setup-node@v4 + uses: actions/setup-node@v5 with: node-version: '20.x' cache: 'yarn' @@ -60,6 +60,6 @@ jobs: run: yarn css - name: Publish to NPM - uses: JS-DevTools/npm-publish@v3 + uses: JS-DevTools/npm-publish@v4 with: token: ${{ secrets.NPM_TOKEN }}