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/autoupdate-poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
lock-changed: ${{ steps.lock-changed.outputs.lock-changed }}
steps:
- name: Checkout main branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: main

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

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Log in to the Container registry
uses: docker/login-action@v4
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: lint
uses: ./.github/actions/lint
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: validate-openapi-spec
uses: ./.github/actions/validate-openapi-spec
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
--health-retries 5
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: test
uses: ./.github/actions/test
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/e2e-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ jobs:
});

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_repo || github.repository }}
ref: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_sha || github.sha }}
Expand All @@ -160,7 +160,7 @@ jobs:
done

- name: Fetch test suite
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
repository: ansible/eda-qa
Expand Down Expand Up @@ -244,7 +244,7 @@ jobs:
environment: ${{ github.event_name == 'issue_comment' && 'protected' || '' }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_repo || github.repository }}
ref: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_sha || github.sha }}
Expand All @@ -257,7 +257,7 @@ jobs:
password: ${{ secrets.QUAY_PASSWORD }}

- name: Fetch test suite
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
repository: ansible/eda-qa
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Log in to the Container registry
uses: docker/login-action@v4
Expand All @@ -38,7 +38,7 @@ jobs:
done

- name: Fetch test suite
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
repository: ansible/eda-qa
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sonar-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
github.event.workflow_run.conclusion == 'success' &&
github.event.workflow_run.event == 'pull_request'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Download coverage artifact from CI workflow
- name: Download coverage artifact
Expand Down Expand Up @@ -179,7 +179,7 @@ jobs:
github.event.workflow_run.event == 'push' &&
github.repository == 'ansible/eda-server'
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

# Download coverage artifact from CI workflow
- name: Download coverage artifact
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sync-openapi-spec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
- name: Checkout spec repo
id: checkout_spec_repo
continue-on-error: true
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ secrets.OPENAPI_SPEC_REPO }}
ref: ${{ steps.branch_map.outputs.spec_branch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ui-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
});

- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_repo || github.repository }}
ref: ${{ github.event_name == 'issue_comment' && needs.check-trigger.outputs.pr_sha || github.sha }}
Expand Down
Loading