Skip to content

Commit

Permalink
fix: bump setup-node and action-setup to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
emnnipal committed Jan 24, 2024
1 parent a050fea commit 2b046bc
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down Expand Up @@ -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 }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2b046bc

Please sign in to comment.