Skip to content

Commit 28256c6

Browse files
committed
Merge branch 'main' into create-pull-request/patch-main
2 parents b8d99fb + 816e711 commit 28256c6

File tree

1,035 files changed

+40231
-3000
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,035 files changed

+40231
-3000
lines changed

.ci/bwcVersions

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@ BWC_VERSION:
4949
- "2.19.4"
5050
- "3.0.0"
5151
- "3.1.0"
52+
- "3.2.0"

.github/workflows/assemble.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
java: [ 21, 23 ]
10+
java: [ 21, 24 ]
1111
os: [ubuntu-latest, windows-latest, macos-13, ubuntu-24.04-arm]
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: Set up JDK ${{ matrix.java }}
1515
uses: actions/setup-java@v4
1616
with:

.github/workflows/auto-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Get tag
2323
id: tag
2424
uses: dawidd6/action-get-tag@v1
25-
- uses: actions/checkout@v4
25+
- uses: actions/checkout@v5
2626
- uses: ncipollo/release-action@v1
2727
with:
2828
github_token: ${{ steps.github_app_token.outputs.token }}

.github/workflows/benchmark-pull-request.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
pull-requests: write
1717
steps:
1818
- name: Checkout Repository
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Set up required env vars
2121
run: |
2222
echo "PR_NUMBER=${{ github.event.issue.number }}" >> $GITHUB_ENV
@@ -135,7 +135,7 @@ jobs:
135135
issue-body: "Please approve or deny the benchmark run for PR #${{ env.PR_NUMBER }}"
136136
exclude-workflow-initiator-as-approver: false
137137
- name: Checkout PR Repo
138-
uses: actions/checkout@v4
138+
uses: actions/checkout@v5
139139
with:
140140
repository: ${{ env.prHeadRepo }}
141141
ref: ${{ env.prHeadRefSha }}
@@ -159,7 +159,7 @@ jobs:
159159
aws s3 cp distribution/archives/linux-tar/build/distributions/opensearch-min-$OPENSEARCH_VERSION-linux-x64.tar.gz s3://${{ secrets.ARCHIVE_ARTIFACT_BUCKET_NAME }}/PR-$PR_NUMBER/
160160
echo "DISTRIBUTION_URL=${{ secrets.ARTIFACT_BUCKET_CLOUDFRONT_URL }}/PR-$PR_NUMBER/opensearch-min-$OPENSEARCH_VERSION-linux-x64.tar.gz" >> $GITHUB_ENV
161161
- name: Checkout opensearch-build repo
162-
uses: actions/checkout@v4
162+
uses: actions/checkout@v5
163163
with:
164164
repository: opensearch-project/opensearch-build
165165
ref: main

.github/workflows/changelog_verifier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
if: github.repository == 'opensearch-project/OpenSearch'
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v5
1313
with:
1414
token: ${{ secrets.GITHUB_TOKEN }}
1515
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/create-documentation-issue.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
installation_id: 22958780
2222

2323
- name: Checkout code
24-
uses: actions/checkout@v4
24+
uses: actions/checkout@v5
2525

2626
- name: Edit the issue template
2727
run: |

.github/workflows/dependabot_pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
installation_id: 22958780
1919

2020
- name: Check out code
21-
uses: actions/checkout@v4
21+
uses: actions/checkout@v5
2222
with:
2323
token: ${{ steps.github_app_token.outputs.token }}
2424
ref: ${{ github.head_ref }}

.github/workflows/detect-breaking-change.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
detect-breaking-change:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v5
1010
- uses: actions/setup-java@v4
1111
with:
1212
distribution: temurin # Temurin is a distribution of adoptium
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
cache-disabled: true
1717
arguments: japicmp
18-
gradle-version: 8.14
18+
gradle-version: 8.14.3
1919
build-root-directory: server
2020
- if: failure()
2121
run: cat server/build/reports/java-compatibility/report.txt

.github/workflows/gradle-check.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
outputs:
2222
RUN_GRADLE_CHECK: ${{ steps.changed-files-specific.outputs.any_changed }}
2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
- name: Get changed files
2626
id: changed-files-specific
2727
uses: tj-actions/[email protected]
@@ -42,7 +42,7 @@ jobs:
4242
timeout-minutes: 130
4343
steps:
4444
- name: Checkout OpenSearch repo
45-
uses: actions/checkout@v4
45+
uses: actions/checkout@v5
4646
with:
4747
ref: ${{ github.event.pull_request.head.sha }}
4848

@@ -93,7 +93,7 @@ jobs:
9393
echo "post_merge_action=true" >> $GITHUB_ENV
9494
9595
- name: Checkout opensearch-build repo
96-
uses: actions/checkout@v4
96+
uses: actions/checkout@v5
9797
with:
9898
repository: opensearch-project/opensearch-build
9999
ref: main

.github/workflows/links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@v5
1414
- name: lychee Link Checker
1515
id: lychee
1616
uses: lycheeverse/[email protected]

0 commit comments

Comments
 (0)