Skip to content

Commit cbf48db

Browse files
Bump actions/checkout from 4 to 5 (#1712)
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent ddb59bd commit cbf48db

11 files changed

+15
-15
lines changed

.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@v4
14+
uses: actions/checkout@v5
1515

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

.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@v4
28+
uses: actions/checkout@v5
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@v4
48+
uses: actions/checkout@v5
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@v4
11+
- uses: actions/checkout@v5
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@v4
16+
uses: actions/checkout@v5
1717

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

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

.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@v4
27+
uses: actions/checkout@v5
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@v4
11+
- uses: actions/checkout@v5
1212
- name: lychee Link Checker
1313
id: lychee
1414
uses: lycheeverse/lychee-action@v2.4.1

.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@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up JDK 21
1818
uses: actions/setup-java@v4
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@v4
14+
uses: actions/checkout@v5
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
@@ -26,7 +26,7 @@ jobs:
2626
distribution: 'temurin'
2727

2828
- name: Checkout OpenSearch
29-
uses: actions/checkout@v4
29+
uses: actions/checkout@v5
3030
with:
3131
repository: opensearch-project/OpenSearch
3232
ref: ${{ matrix.entry.opensearch_ref }}
@@ -76,7 +76,7 @@ jobs:
7676
for attempt in {1..20}; do sleep 5; if curl -s localhost:9200; then echo '=====> ready'; break; fi; echo '=====> waiting...'; done
7777
7878
- name: Checkout Java Client
79-
uses: actions/checkout@v4
79+
uses: actions/checkout@v5
8080
with:
8181
path: opensearch-java
8282

.github/workflows/test-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
- { opensearch_version: 3.0.0, java: 21 }
2828
steps:
2929
- name: Checkout Java Client
30-
uses: actions/checkout@v4
30+
uses: actions/checkout@v5
3131

3232
- name: Set up JDK ${{ matrix.java }}
3333
uses: actions/setup-java@v4

0 commit comments

Comments
 (0)