Skip to content

Commit d64dd88

Browse files
ci: bump actions/checkout from 5 to 6 in the checkout-and-setup group
Bumps the checkout-and-setup group with 1 update: [actions/checkout](https://github.com/actions/checkout). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: checkout-and-setup ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 3a6d548 commit d64dd88

13 files changed

+20
-20
lines changed

.github/workflows/a2a-tck-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
run: |
3131
git config --global core.autocrlf input
3232
33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434

3535
- name: Set up JDK ${{ env.JAVA_VERSION }}
3636
uses: actions/setup-java@v5

.github/workflows/checks.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Configure Git
4747
run: |
4848
git config --global core.autocrlf input
49-
- uses: actions/checkout@v5
49+
- uses: actions/checkout@v6
5050
- name: Set up JDK ${{ env.JAVA_VERSION }}
5151
uses: actions/setup-java@v5
5252
with:
@@ -74,7 +74,7 @@ jobs:
7474
- name: Configure Git
7575
run: |
7676
git config --global core.autocrlf input
77-
- uses: actions/checkout@v5
77+
- uses: actions/checkout@v6
7878

7979
# Using setup-python on CI to install Python might be faster than with uv (official uv recommendation)
8080
- name: Set up Python
@@ -108,7 +108,7 @@ jobs:
108108
- name: Configure Git
109109
run: |
110110
git config --global core.autocrlf input
111-
- uses: actions/checkout@v5
111+
- uses: actions/checkout@v6
112112
- name: Set up JDK ${{ env.JAVA_VERSION }}
113113
uses: actions/setup-java@v5
114114
with:
@@ -173,7 +173,7 @@ jobs:
173173
pull-requests: write
174174
checks: write
175175
steps:
176-
- uses: actions/checkout@v5
176+
- uses: actions/checkout@v6
177177
with:
178178
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
179179
fetch-depth: 0 # a full history is required for pull request analysis
@@ -207,7 +207,7 @@ jobs:
207207
knit:
208208
runs-on: ubuntu-latest
209209
steps:
210-
- uses: actions/checkout@v5
210+
- uses: actions/checkout@v6
211211
- uses: actions/setup-java@v5
212212
with:
213213
distribution: ${{ env.JAVA_DISTRIBUTION }}
@@ -235,7 +235,7 @@ jobs:
235235
permissions:
236236
contents: read
237237
steps:
238-
- uses: actions/checkout@v5
238+
- uses: actions/checkout@v6
239239
- name: Set up JDK ${{ env.JAVA_VERSION }}
240240
uses: actions/setup-java@v5
241241
with:

.github/workflows/code-agent-examples.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Configure Git
3737
run: |
3838
git config --global core.autocrlf input
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- name: Set up JDK ${{ env.JAVA_VERSION }}
4141
uses: actions/setup-java@v5
4242
with:

.github/workflows/demo-compose-app.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Configure Git
3737
run: |
3838
git config --global core.autocrlf input
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- name: Set up JDK ${{ env.JAVA_VERSION }}
4141
uses: actions/setup-java@v5
4242
with:

.github/workflows/dependency-submission.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ubuntu-latest
1717
steps:
1818
- name: Checkout sources
19-
uses: actions/checkout@v5
19+
uses: actions/checkout@v6
2020
- name: Setup Java
2121
uses: actions/setup-java@v5
2222
with:

.github/workflows/deploy-all-docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout project
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Set up JDK
2424
uses: actions/setup-java@v5
@@ -58,7 +58,7 @@ jobs:
5858
- name: Configure Git
5959
run: |
6060
git config --global core.autocrlf input
61-
- uses: actions/checkout@v5
61+
- uses: actions/checkout@v6
6262

6363
# Using setup-python on CI to install Python might be faster than with uv (official uv recommendation)
6464
- name: Set up Python

.github/workflows/deploy-dokka-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
runs-on: ubuntu-latest
1919
steps:
2020
- name: Checkout project
21-
uses: actions/checkout@v5
21+
uses: actions/checkout@v6
2222

2323
- name: Set up JDK
2424
uses: actions/setup-java@v5

.github/workflows/deploy-koog-ai-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: Configure Git
2525
run: |
2626
git config --global core.autocrlf input
27-
- uses: actions/checkout@v5
27+
- uses: actions/checkout@v6
2828

2929
# Using setup-python on CI to install Python might be faster than with uv (official uv recommendation)
3030
- name: Set up Python

.github/workflows/heavy-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
run: |
7777
git config --global core.autocrlf input
7878
79-
- uses: actions/checkout@v5
79+
- uses: actions/checkout@v6
8080

8181
- name: Set up JDK 17
8282
uses: actions/setup-java@v5

.github/workflows/ollama-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
echo "=== Disk space after cleanup ==="
7777
df -h
7878
79-
- uses: actions/checkout@v5
79+
- uses: actions/checkout@v6
8080
- name: Set up JDK 17
8181
uses: actions/setup-java@v5
8282
with:

0 commit comments

Comments
 (0)