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
4 changes: 2 additions & 2 deletions .github/workflows/build-on-change.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
has_changes: ${{ steps.filter.outputs.has_changes }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 2

Expand Down Expand Up @@ -185,7 +185,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Download tools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
valid: ${{ steps.validate.outputs.valid }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Validate recipe
id: validate
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-bot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ jobs:

- name: Checkout for lint
if: steps.parse.outputs.command == 'lint'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:

- name: Checkout for check
if: steps.parse.outputs.command == 'check'
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-build-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
echo "::notice::PR #${{ inputs.pr_number }}: ${HEAD_REF} (${HEAD_SHA})"

- name: Checkout PR
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ steps.pr-info.outputs.head_sha }}
fetch-depth: 0
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout PR
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ needs.detect-changes.outputs.pr_head_sha }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
packages: read
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install tools
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rolling-rebuilds.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
has_packages: ${{ steps.find.outputs.has_packages }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Find rolling packages
id: find
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
has_updates: ${{ steps.check.outputs.has_updates }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install skopeo
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-checker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
pull-requests: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down