Skip to content

Commit

Permalink
ci: fix checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
WoozyMasta committed Nov 29, 2024
1 parent a926e83 commit c5a0bd6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/actions/base/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ inputs:
runs:
using: "composite"
steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run ShellCheck
uses: ludeeus/action-shellcheck@master

Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/commit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run base workflow
uses: ./.github/actions/base
with:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ jobs:
WORK_DIR: cli

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Run base workflow
uses: ./.github/actions/base
with:
Expand Down

0 comments on commit c5a0bd6

Please sign in to comment.