Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/actions/determine-packages/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ runs:
- name: Checkout Code (Push Only)
# Only checkout if push event, as paths-filter needs the code
if: inputs.event_name == 'push'
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # Needed for paths-filter comparison

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-bun-job.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ${{ inputs.operating-system }}
steps:
- name: Checkout Project
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
submodules: ${{ inputs.with-submodules }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-continuous-delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
TAG: ${{ github.event_name == 'push' && 'next' || format('pr-{0}', inputs['pr-number']) }}
steps:
- name: Checkout Project
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
repository: ${{ inputs.repository }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-labelsync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: ${{ inputs.operating-system }}
steps:
- name: Checkout Core labels
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: core-labels
sparse-checkout: .github/labels.yml
Expand All @@ -39,7 +39,7 @@ jobs:

- name: Checkout Overwrite Labels
if: inputs.merge-labels == true
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
path: overwrite-labels
sparse-checkout: .github/labels.yml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
if: github.repository_owner == 'aether-development'
steps:
- name: Checkout Project
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0
ref: main
Expand Down