diff --git a/.github/workflows/lock.yml b/.github/workflows/lock.yml index 082b2733ef6b..2c143dc3f000 100644 --- a/.github/workflows/lock.yml +++ b/.github/workflows/lock.yml @@ -8,19 +8,19 @@ jobs: lock: runs-on: ubuntu-latest steps: - - uses: dessant/lock-threads@v2.1.2 + - uses: dessant/lock-threads@v3 with: github-token: ${{ github.token }} - issue-lock-inactive-days: '30' - issue-exclude-labels: 'Discussion' - issue-lock-comment: > + issue-inactive-days: '30' + exclude-any-issue-labels: 'Discussion' + issue-comment: > This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. Please note this issue tracker is not a help forum. We recommend using [StackOverflow](https://stackoverflow.com/questions/tagged/jestjs) or our [discord channel](https://discord.gg/j6FKKQQrW9) for questions. - pr-lock-inactive-days: '30' - pr-lock-comment: > + pr-inactive-days: '30' + pr-comment: > This pull request has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. Please note this issue tracker is not a help forum. We recommend using [StackOverflow](https://stackoverflow.com/questions/tagged/jestjs) or our [discord channel](https://discord.gg/j6FKKQQrW9) for questions. diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 6d5266607e9f..cfcbc9a1d0ab 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -22,9 +22,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2 - - uses: actions/setup-node@v2.4.0 + - uses: actions/setup-node@v2 with: node-version: 14.x cache: yarn @@ -43,8 +43,8 @@ jobs: needs: prepare-yarn-cache steps: - - uses: actions/checkout@v2.3.4 - - uses: actions/setup-node@v2.4.0 + - uses: actions/checkout@v2 + - uses: actions/setup-node@v2 with: node-version: 12.x cache: yarn @@ -81,9 +81,9 @@ jobs: git config --global core.autocrlf false git config --global core.symlinks true if: runner.os == 'Windows' - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v2.4.0 + uses: actions/setup-node@v2 with: node-version: ${{ matrix.node-version }} cache: yarn @@ -113,9 +113,9 @@ jobs: git config --global core.autocrlf false git config --global core.symlinks true if: runner.os == 'Windows' - - uses: actions/checkout@v2.3.4 + - uses: actions/checkout@v2 - name: Use Node.js 14.x - uses: actions/setup-node@v2.4.0 + uses: actions/setup-node@v2 with: node-version: 14.x cache: yarn