Skip to content

Commit

Permalink
fix: bump actions checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
emnnipal committed Jan 24, 2024
1 parent a93c4da commit 0fbaf74
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
VERCEL_DOMAIN: t3-stack-app.vercel.app
steps:
- name: Checkout ${{ inputs.branch }} branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ inputs.branch }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout ${{ github.ref }} branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}

Expand Down Expand Up @@ -63,7 +63,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
2 changes: 1 addition & 1 deletion .github/workflows/pr-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
pr-lint-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ github.ref }}

Expand Down

0 comments on commit 0fbaf74

Please sign in to comment.