diff --git a/.github/workflows/comment-run.yml b/.github/workflows/comment-run.yml index b7769cd6..6f49f9b9 100644 --- a/.github/workflows/comment-run.yml +++ b/.github/workflows/comment-run.yml @@ -7,7 +7,7 @@ jobs: comment-run: runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # 0 indicates all history fetch-depth: 0 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 016d6d56..9f6571a4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,13 +15,13 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 16 - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: npm ci - run: npm run all test: # make sure the action works on a clean machine without building runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Create a simple Web site run: mkdir -p deploy_dist && echo -e "
$(date -u)\n$GITHUB_SHA\n$GITHUB_REF
" > deploy_dist/index.html - uses: ./