diff --git a/.github/workflows/npm-prepublish.yml b/.github/workflows/npm-prepublish.yml index 0e8f9092..17501b85 100644 --- a/.github/workflows/npm-prepublish.yml +++ b/.github/workflows/npm-prepublish.yml @@ -13,14 +13,14 @@ jobs: runs-on: ubuntu-latest if: "! startsWith(github.event.head_commit.message, '[CI Skip]') && github.repository == 'dhiway/cord.js'" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4.1.1 with: fetch-depth: 0 token: ${{ secrets.GH_PAT }} - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4.0.2 with: node-version: 14 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4.0.2 with: node-version: 14 - name: Install dependencies diff --git a/.github/workflows/on-pr-submit.yml b/.github/workflows/on-pr-submit.yml index 14325a79..ee57496f 100644 --- a/.github/workflows/on-pr-submit.yml +++ b/.github/workflows/on-pr-submit.yml @@ -26,7 +26,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Check-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 + - uses: actions/checkout@v4.1.1 # Build --- TODO: add yarn build:docs once this succeeds