Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
changed_files_node_lint: ${{ steps.changed_files.outputs.node_lint_any_changed }}
changed_files_renovate: ${{ steps.changed_files.outputs.renovate_any_changed }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Get all test, doc and src files that have changed
id: changed_files
Expand All @@ -42,7 +42,7 @@ jobs:
needs: setup
if: needs.setup.outputs.changed_files_node_all == 'true' || needs.setup.outputs.changed_files_node_lint == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-node@v4
with:
Expand All @@ -59,7 +59,7 @@ jobs:
needs: setup
if: needs.setup.outputs.changed_files_node_all == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-node@v4
with:
Expand All @@ -82,7 +82,7 @@ jobs:
needs: setup
if: needs.setup.outputs.changed_files_node_all == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: actions/setup-node@v4
with:
Expand All @@ -102,7 +102,7 @@ jobs:
needs: setup
if: needs.setup.outputs.changed_files_renovate == 'true'
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- run: |
npx --package renovate -c 'renovate-config-validator'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shipjs-manual-prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
startsWith(github.event.comment.body, '@shipjs prepare')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shipjs-trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
if: github.event.pull_request.merged == true && startsWith(github.head_ref, 'releases/v')
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
ref: main
Expand Down