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/workflows/amber-auto-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

steps:
- name: Checkout PR head
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amber-dependency-sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: main
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amber-issue-handler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude-code-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout PR head
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.ref }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/claude.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout repository (fork-compatible)
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
repository: ${{ github.event.issue.pull_request && steps.pr-info.outputs.is_fork == 'true' && format('{0}/{1}', steps.pr-info.outputs.pr_head_owner, steps.pr-info.outputs.pr_head_repo) || github.repository }}
ref: ${{ github.event.issue.pull_request && steps.pr-info.outputs.pr_head_ref || github.ref }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/components-build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
claude-runner: ${{ steps.filter.outputs.claude-runner }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
steps:
- name: Checkout code
if: matrix.component.changed == 'true' || github.event_name == 'workflow_dispatch'
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}

Expand Down Expand Up @@ -146,7 +146,7 @@ jobs:
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install oc
uses: redhat-actions/oc-installer@v1
Expand All @@ -169,7 +169,7 @@ jobs:
if: github.event_name == 'push' && github.ref == 'refs/heads/main' && (needs.detect-changes.outputs.frontend == 'true' || needs.detect-changes.outputs.backend == 'true' || needs.detect-changes.outputs.operator == 'true' || needs.detect-changes.outputs.claude-runner == 'true')
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install oc
uses: redhat-actions/oc-installer@v1
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
if: github.event_name == 'workflow_dispatch'
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install oc
uses: redhat-actions/oc-installer@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
microdnf install -y git tar

- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install Python and dependencies
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
claude-runner: ${{ steps.filter.outputs.claude-runner }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check for component changes
uses: dorny/paths-filter@v3
Expand All @@ -60,7 +60,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Validate AGENTS.md symlink
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/frontend-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/go-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
operator: ${{ steps.filter.outputs.operator }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Check for Go changes
uses: dorny/paths-filter@v3
Expand All @@ -57,7 +57,7 @@ jobs:
if: needs.detect-go-changes.outputs.backend == 'true' || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v6
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
if: needs.detect-go-changes.outputs.operator == 'true' || github.event_name == 'workflow_dispatch'
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Go
uses: actions/setup-go@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/makefile-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install shellcheck
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/prod-release-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
new_tag: ${{ steps.next_version.outputs.new_tag }}
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0 # Fetch all history for changelog generation

Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:
dockerfile: ./components/runners/claude-code-runner/Dockerfile
steps:
- name: Checkout code from the tag generated above
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.release.outputs.new_tag }}
fetch-depth: 0
Expand Down Expand Up @@ -203,7 +203,7 @@ jobs:
needs: [release, build-and-push]
steps:
- name: Checkout code from release tag
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ needs.release.outputs.new_tag }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runner-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Python
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-agents-md-symlink.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Validate AGENTS.md symlink
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-local-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install minikube and kubectl
run: |
Expand Down
Loading