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/call-g2g-composite-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
pull-requests: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: "Call the lfit/github2gerrit composite action"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github2gerrit-v2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
echo "::notice::Installed git-review $(git review --version)"

- name: "Checkout repository"
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: ${{ inputs.FETCH_DEPTH }}
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/github2gerrit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:
jq --version

- name: Clone Github repo where the PR is submitted
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: ${{ inputs.fetch_depth }}
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
test-pr-number: ${{ steps.create-test-pr.outputs.pr-number }}
test-repo-url: ${{ steps.setup.outputs.repo-url }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Setup test repository"
id: setup
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- change-id-reuse
- issue-id-integration
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Setup mock Gerrit server"
run: |
Expand Down Expand Up @@ -197,7 +197,7 @@ jobs:
- change-id-reuse
- issue-id-lookup
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Setup regression test environment"
run: |
Expand Down Expand Up @@ -311,7 +311,7 @@ jobs:
- malformed-pr-data
- conflicting-inputs
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Setup error scenario: ${{ matrix.error-type }}"
run: |
Expand Down Expand Up @@ -366,7 +366,7 @@ jobs:
runs-on: ubuntu-latest
if: inputs.test_level == 'comprehensive' || github.event_name == 'schedule'
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Performance benchmark V1 vs V2"
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
timeout-minutes: 3

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Install dependencies"
run: |
Expand Down Expand Up @@ -84,7 +84,7 @@ jobs:
timeout-minutes: 5

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Test dependencies installation"
run: |
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
timeout-minutes: 8

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Setup test environment"
run: |
Expand Down Expand Up @@ -253,7 +253,7 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: "Real Gerrit connection test (dry-run)"
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ runs:
jq --version

- name: Clone Github repo where the PR is submitted
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: ${{ inputs.FETCH_DEPTH }}
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
Loading