Skip to content

Commit 6d05b4b

Browse files
authored
Merge pull request lightspeed-core#2074 from samdoran/update-checkout-action
LCORE- Update checkout action
2 parents 68b9434 + 10fe900 commit 6d05b4b

17 files changed

Lines changed: 18 additions & 18 deletions

.github/workflows/black.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
pull-requests: read
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v7
1515
- name: Install uv
1616
uses: astral-sh/setup-uv@v5
1717
with:

.github/workflows/build_and_push_dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# qemu is required for arm64 builds
2626
sudo apt install -y buildah qemu-user-static
2727
- name: Checkout code
28-
uses: actions/checkout@v4
28+
uses: actions/checkout@v7
2929
with:
3030
# Fetch submodules (required for lightspeed-providers)
3131
submodules: 'recursive'

.github/workflows/build_pr.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
# qemu is required for arm64 builds
2424
sudo apt install -y buildah qemu-user-static
2525
- name: Checkout code
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v7
2727
with:
2828
# Fetch submodules (required for lightspeed-providers)
2929
submodules: 'recursive'

.github/workflows/check_dependencies.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
pull-requests: read
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v7
1515
- name: Install uv
1616
uses: astral-sh/setup-uv@v5
1717
with:

.github/workflows/e2e_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
E2E_LLAMA_HOSTNAME: ${{ vars.E2E_LLAMA_HOSTNAME || 'llama-stack' }}
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v7
2828
with:
2929
# On PR_TARGET → the fork (or same repo) that opened the PR.
3030
# On push → falls back to the current repository.

.github/workflows/e2e_tests_lightspeed_evaluation.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v7
2121
with:
2222
# On PR_TARGET → the fork (or same repo) that opened the PR.
2323
# On push → falls back to the current repository.
@@ -47,7 +47,7 @@ jobs:
4747
git log --oneline -5
4848
4949
- name: Checkout lightspeed-Evaluation
50-
uses: actions/checkout@v4
50+
uses: actions/checkout@v7
5151
with:
5252
repository: lightspeed-core/lightspeed-evaluation
5353
path: lightspeed-evaluation

.github/workflows/e2e_tests_rhaiis.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
E2E_DEFAULT_PROVIDER_OVERRIDE: vllm
3939

4040
steps:
41-
- uses: actions/checkout@v4
41+
- uses: actions/checkout@v7
4242
with:
4343
# On PR_TARGET → the fork (or same repo) that opened the PR.
4444
# On push → falls back to the current repository.

.github/workflows/integration_tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
python-version: ["3.12", "3.13"]
1616
steps:
17-
- uses: actions/checkout@v4
17+
- uses: actions/checkout@v7
1818
- name: Install uv
1919
uses: astral-sh/setup-uv@v5
2020
with:

.github/workflows/mypy.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
contents: read
1212
pull-requests: read
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v7
1515
- name: Install uv
1616
uses: astral-sh/setup-uv@v5
1717
with:

.github/workflows/openapi_spectral.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
contents: read
1616
pull-requests: read
1717
steps:
18-
- uses: actions/checkout@v4
18+
- uses: actions/checkout@v7
1919
- name: Install uv
2020
uses: astral-sh/setup-uv@v5
2121
with:

0 commit comments

Comments
 (0)