diff --git a/.github/workflows/deploy-workflow.yml b/.github/workflows/deploy-workflow.yml index 8ab68a0..23bf948 100644 --- a/.github/workflows/deploy-workflow.yml +++ b/.github/workflows/deploy-workflow.yml @@ -12,15 +12,15 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout ${{ github.ref }} branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: ${{ github.ref }} - - uses: pnpm/action-setup@v2.0.1 + - uses: pnpm/action-setup@v2 with: version: 7.0.1 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: 16.13.0 cache: 'pnpm' @@ -59,7 +59,7 @@ jobs: tag: ${{ steps.changelog.outputs.tag }} steps: - name: Checkout main branch - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: ref: main token: ${{ secrets.PAT }} diff --git a/.github/workflows/pr-tests.yml b/.github/workflows/pr-tests.yml index a74b806..2729a04 100644 --- a/.github/workflows/pr-tests.yml +++ b/.github/workflows/pr-tests.yml @@ -7,15 +7,15 @@ jobs: pr-lint-and-test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: ref: ${{ github.ref }} - - uses: pnpm/action-setup@v2.0.1 + - uses: pnpm/action-setup@v2 with: version: 7.0.1 - - uses: actions/setup-node@v2 + - uses: actions/setup-node@v4 with: node-version: 16.13.0 cache: 'pnpm' diff --git a/.github/workflows/pr-title-checker.yml b/.github/workflows/pr-title-checker.yml index 7d51751..2be77a7 100644 --- a/.github/workflows/pr-title-checker.yml +++ b/.github/workflows/pr-title-checker.yml @@ -12,7 +12,7 @@ jobs: pr-title-check: runs-on: ubuntu-latest steps: - - uses: thehanimo/pr-title-checker@v1.3.3 + - uses: thehanimo/pr-title-checker@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} pass_on_octokit_error: false