Skip to content

Commit 2cbd23b

Browse files
opensearch-trigger-bot[bot]github-actions[bot]dependabot[bot]
authored
Bump actions/checkout from 5 to 6 (#1801) (#1802)
Bumps [actions/checkout](https://github.com/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 ... (cherry picked from commit 2ae7bf3) Signed-off-by: dependabot[bot] <support@github.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ddfa834 commit 2cbd23b

11 files changed

Lines changed: 15 additions & 15 deletions

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
os: [ubuntu-latest, windows-latest, macOS-13, macOS-latest]
1212
steps:
1313
- name: Checkout Java Client
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515

1616
- name: Set up JDK ${{ matrix.java }}
1717
uses: actions/setup-java@v5

.github/workflows/bump-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
private-key: ${{ secrets.APP_PRIVATE_KEY }}
2626

2727
- name: Checkout .github/actions directory
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
path: gh
3131
sparse-checkout: |
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
steps:
4747
- name: Checkout .github/actions directory
48-
uses: actions/checkout@v5
48+
uses: actions/checkout@v6
4949
with:
5050
path: gh
5151
sparse-checkout: |

.github/workflows/changelog_verifier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
verify-changelog:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
with:
1313
token: ${{ secrets.GITHUB_TOKEN }}
1414
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/code-generation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout Java Client
16-
uses: actions/checkout@v5
16+
uses: actions/checkout@v6
1717

1818
- name: Set up JDK
1919
uses: actions/setup-java@v5
@@ -48,7 +48,7 @@ jobs:
4848
pull-requests: write
4949
steps:
5050
- name: Checkout Java Client
51-
uses: actions/checkout@v5
51+
uses: actions/checkout@v6
5252

5353
- name: Set up JDK
5454
uses: actions/setup-java@v5

.github/workflows/dependabot_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
private-key: ${{ secrets.APP_PRIVATE_KEY }}
2525

2626
- name: Check out code
27-
uses: actions/checkout@v5
27+
uses: actions/checkout@v6
2828
with:
2929
token: ${{ steps.github_app_token.outputs.token }}
3030
ref: ${{ github.event.pull_request.head.ref }}

.github/workflows/links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v5
11+
- uses: actions/checkout@v6
1212
- name: lychee Link Checker
1313
id: lychee
1414
uses: lycheeverse/lychee-action@v2.7.0

.github/workflows/publish-snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
id-token: write
1414
contents: write
1515
steps:
16-
- uses: actions/checkout@v5
16+
- uses: actions/checkout@v6
1717
- name: Set up JDK 21
1818
uses: actions/setup-java@v5
1919
with:

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v6
1515
- id: get_data
1616
run: |
1717
echo "approvers=$(cat .github/CODEOWNERS | grep @ | tr -d '* ' | sed 's/@/,/g' | sed 's/,//1')" >> $GITHUB_OUTPUT

.github/workflows/test-integration-unreleased.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
distribution: 'temurin'
2828

2929
- name: Checkout OpenSearch
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
repository: opensearch-project/OpenSearch
3333
ref: ${{ matrix.entry.opensearch_ref }}
@@ -77,7 +77,7 @@ jobs:
7777
for attempt in {1..20}; do sleep 5; if curl -s localhost:9200; then echo '=====> ready'; break; fi; echo '=====> waiting...'; done
7878
7979
- name: Checkout Java Client
80-
uses: actions/checkout@v5
80+
uses: actions/checkout@v6
8181
with:
8282
path: opensearch-java
8383

.github/workflows/test-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- { opensearch_version: 3.2.0, java: 25 }
3030
steps:
3131
- name: Checkout Java Client
32-
uses: actions/checkout@v5
32+
uses: actions/checkout@v6
3333

3434
- name: Set up JDK ${{ matrix.java }}
3535
uses: actions/setup-java@v5

0 commit comments

Comments
 (0)