Skip to content

Commit

Permalink
Merge branch 'actions-upgrade'
Browse files Browse the repository at this point in the history
This switches the Checkout action from a custom action to the default actions/checkout@v3. Nothing seems to go wrong and
it's less for us to maintain.
  • Loading branch information
Southpaw1496 committed Sep 11, 2023
2 parents 7887c28 + b9428ae commit 9756d5d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 12 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/commit-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ jobs:
name: Generate commit preview
steps:
- name: Checkout
uses: akarys42/checkout-with-filter@main
with:
filter: 'blob:none'
fetch-depth: 0
uses: actions/checkout@v3

- name: Enable Corepack shims
run: corepack enable
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/manual-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,7 @@ jobs:
name: Publish website
steps:
- name: Checkout
uses: akarys42/checkout-with-filter@main
with:
filter: 'blob:none'
fetch-depth: 0
uses: actions/checkout@v3

- name: Enable Corepack shims
run: corepack enable
Expand Down
5 changes: 1 addition & 4 deletions .github/workflows/pr-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ jobs:
name: Generate PR preview
steps:
- name: Checkout
uses: akarys42/checkout-with-filter@main
with:
filter: 'blob:none'
fetch-depth: 0
uses: checkout/actions@v3

- name: Enable Corepack shims
run: corepack enable
Expand Down

0 comments on commit 9756d5d

Please sign in to comment.