diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index 9a0cd49777..75483690be 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -23,7 +23,7 @@ jobs: installation_id: 22958780 - name: Backport - uses: VachaShah/backport@v2.1.0 + uses: VachaShah/backport@v2.2.0 with: github_token: ${{ steps.github_app_token.outputs.token }} head_template: backport/backport-<%= number %>-to-<%= base %> \ No newline at end of file diff --git a/.github/workflows/code-generation.yml b/.github/workflows/code-generation.yml index 62e15f21b2..0043517738 100644 --- a/.github/workflows/code-generation.yml +++ b/.github/workflows/code-generation.yml @@ -74,7 +74,7 @@ jobs: installation_id: 22958780 - name: Create Pull Request - uses: peter-evans/create-pull-request@v6 + uses: peter-evans/create-pull-request@v7 with: token: ${{ steps.github_app_token.outputs.token || secrets.GITHUB_TOKEN }} committer: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> diff --git a/.github/workflows/increment-version.yml b/.github/workflows/increment-version.yml index e8e754dd04..aca87bc257 100644 --- a/.github/workflows/increment-version.yml +++ b/.github/workflows/increment-version.yml @@ -51,7 +51,7 @@ jobs: sed -i "s/systemProp.version = $CURRENT_VERSION/systemProp.version = $NEXT_VERSION/g" gradle.properties - name: Create Pull Request - uses: peter-evans/create-pull-request@v5 + uses: peter-evans/create-pull-request@v7 with: token: ${{ steps.github_app_token.outputs.token }} base: ${{ env.BASE_X }} diff --git a/.github/workflows/links.yml b/.github/workflows/links.yml index f5d2b8dd6e..9f8a2b146b 100644 --- a/.github/workflows/links.yml +++ b/.github/workflows/links.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/checkout@v3 - name: lychee Link Checker id: lychee - uses: lycheeverse/lychee-action@v1.5.0 + uses: lycheeverse/lychee-action@v2.0.2 with: args: --accept=200,403,429 "**/*.html" "**/*.md" "**/*.txt" "**/*.json" --exclude-mail fail: true diff --git a/CHANGELOG.md b/CHANGELOG.md index 4f1a8b62cc..48b9736850 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,10 +3,11 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased 3.0] ### Dependencies -- Bumps `org.junit:junit-bom` from 5.10.2 to 5.11.2 +- Bumps `org.junit:junit-bom` from 5.10.2 to 5.11.3 - Bumps `org.eclipse.parsson:parsson` from 1.1.6 to 1.1.7 - Bumps `org.hamcrest:hamcrest` from 2.2 to 3.0 - Bumps `com.github.jk1.dependency-license-report` from 2.8 to 2.9 +- Bumps `org.apache.httpcomponents.client5:httpclient5` from 5.4 to 5.4.1 - Bumps `org.apache.httpcomponents.core5:httpcore5` from 5.3 to 5.3.1 This section is for maintaining a changelog for all breaking changes for the client that cannot be released in the 2.x line. All other non-breaking changes should be added to [Unreleased 2.x] section. diff --git a/java-client/build.gradle.kts b/java-client/build.gradle.kts index 09f5e251d9..180bcbc1e8 100644 --- a/java-client/build.gradle.kts +++ b/java-client/build.gradle.kts @@ -186,7 +186,7 @@ dependencies { } testImplementation("org.opensearch.client", "opensearch-rest-client", opensearchVersion) - api("org.apache.httpcomponents.client5:httpclient5:5.4") { + api("org.apache.httpcomponents.client5:httpclient5:5.4.1") { exclude(group = "org.apache.httpcomponents.core5") } api("org.apache.httpcomponents.core5:httpcore5:5.3.1") diff --git a/java-codegen/build.gradle.kts b/java-codegen/build.gradle.kts index 1cb6257bec..1fb5b501ed 100644 --- a/java-codegen/build.gradle.kts +++ b/java-codegen/build.gradle.kts @@ -175,7 +175,7 @@ dependencies { implementation("org.commonmark", "commonmark", "0.23.0") // EPL-2.0 - testImplementation(platform("org.junit:junit-bom:5.11.2")) + testImplementation(platform("org.junit:junit-bom:5.11.3")) testImplementation("org.junit.jupiter", "junit-jupiter") testRuntimeOnly("org.junit.platform", "junit-platform-launcher") }