Skip to content

Commit

Permalink
chore(ci): upgrade to the checkout action v4 (#423)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregjopa committed Feb 28, 2024
1 parent 6fa2ee4 commit 5339384
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Expand Up @@ -5,9 +5,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
token: ${{ secrets.ACCESS_TOKEN }}
ref: ${{github.event.pull_request.head.sha}}
fetch-depth: 0

- name: 🤝 Set Node version from .nvmrc
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/storybook.yml
Expand Up @@ -12,8 +12,9 @@ jobs:

steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.sha}}
fetch-depth: 0

- name: 🤝 Set Node version from .nvmrc
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/validate.yml
Expand Up @@ -11,8 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: ${{github.event.pull_request.head.sha}}
fetch-depth: 0

- name: 🤝 Set Node version from .nvmrc
Expand Down

0 comments on commit 5339384

Please sign in to comment.