diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 5b47875..1aa7eeb 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -8,11 +8,11 @@ on: pull_request: null jobs: lint-commit-messages: - uses: vidavidorra/.github/.github/workflows/lint-commit-messages.yml@24ea160cd3be95b9bbfb4853d71124d2046d0d0e # v7.0.0 + uses: vidavidorra/.github/.github/workflows/lint-commit-messages.yml@06f357a271f8bc7c0bc61cf27ec8cdb4ec9c9d26 # v8.0.0 lint: - uses: vidavidorra/.github/.github/workflows/node-lint.yml@24ea160cd3be95b9bbfb4853d71124d2046d0d0e # v7.0.0 + uses: vidavidorra/.github/.github/workflows/node-lint.yml@06f357a271f8bc7c0bc61cf27ec8cdb4ec9c9d26 # v8.0.0 build: - uses: vidavidorra/.github/.github/workflows/node-build.yml@24ea160cd3be95b9bbfb4853d71124d2046d0d0e # v7.0.0 + uses: vidavidorra/.github/.github/workflows/node-build.yml@06f357a271f8bc7c0bc61cf27ec8cdb4ec9c9d26 # v8.0.0 strategy: fail-fast: false matrix: @@ -20,7 +20,7 @@ jobs: with: nodeVersion: ${{ matrix.nodeVersion }} test: - uses: vidavidorra/.github/.github/workflows/node-test.yml@24ea160cd3be95b9bbfb4853d71124d2046d0d0e # v7.0.0 + uses: vidavidorra/.github/.github/workflows/node-test.yml@06f357a271f8bc7c0bc61cf27ec8cdb4ec9c9d26 # v8.0.0 strategy: fail-fast: false matrix: @@ -28,15 +28,13 @@ jobs: with: nodeVersion: ${{ matrix.nodeVersion }} code-coverage: - uses: vidavidorra/.github/.github/workflows/node-test-coverage.yml@24ea160cd3be95b9bbfb4853d71124d2046d0d0e # v7.0.0 + uses: vidavidorra/.github/.github/workflows/node-test-coverage.yml@06f357a271f8bc7c0bc61cf27ec8cdb4ec9c9d26 # v8.0.0 needs: - lint - build - test - secrets: - codecovToken: ${{ secrets.CODECOV_TOKEN }} release: - uses: vidavidorra/.github/.github/workflows/release.yml@24ea160cd3be95b9bbfb4853d71124d2046d0d0e # v7.0.0 + uses: vidavidorra/.github/.github/workflows/release.yml@06f357a271f8bc7c0bc61cf27ec8cdb4ec9c9d26 # v8.0.0 needs: - lint-commit-messages - lint @@ -45,4 +43,3 @@ jobs: - code-coverage secrets: privateKey: ${{ secrets.RELEASE_PRIVATE_KEY }} - npmToken: ${{ secrets.NPM_PUBLISH_TOKEN }}