From b1b08854764d34382a401d333babc79d1ee64a84 Mon Sep 17 00:00:00 2001 From: mayc Date: Tue, 17 Mar 2026 15:06:31 -0400 Subject: [PATCH 1/3] Update Okhttp --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 5740e1f..3167cda 100644 --- a/build.gradle +++ b/build.gradle @@ -40,8 +40,8 @@ dependencies { api 'com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.21.1' // retrofit will not update these dependencies to fix vulnerabilities - api 'com.squareup.okhttp3:okhttp:4.12.0' - api 'com.squareup.okio:okio:3.16.4' + api 'com.squareup.okhttp3:okhttp:5.3.2' + api 'com.squareup.okio:okio:3.17.0' testImplementation platform('org.junit:junit-bom:5.12.2') testImplementation 'org.junit.jupiter:junit-jupiter-api' From 166dab966e401c877acde0996796aafd836a6c83 Mon Sep 17 00:00:00 2001 From: mayc Date: Tue, 17 Mar 2026 15:20:19 -0400 Subject: [PATCH 2/3] Update actions --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/integration.yml | 4 ++-- .github/workflows/publish.yml | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 44e8830..6a2d715 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v6 with: # We must fetch at least the immediate parents so that if this is a pull request then we can checkout the head. fetch-depth: 2 diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 88ae06a..f6a8948 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -11,11 +11,11 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v6 with: fetch-depth: 0 - name: Set up JDK - uses: actions/setup-java@v2 + uses: actions/setup-java@v5 with: distribution: 'adopt' java-version: '21' diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 8d2ef4a..a959f4e 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,9 +15,9 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v6 - name: Set up JDK - uses: actions/setup-java@v2 + uses: actions/setup-java@v5 with: distribution: 'adopt' java-version: '21' From 9637a7de0f1de5ad42b803770aaee829892d351f Mon Sep 17 00:00:00 2001 From: mayc Date: Tue, 17 Mar 2026 15:23:26 -0400 Subject: [PATCH 3/3] Update actions --- .github/workflows/integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index f6a8948..c5cf9e5 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -20,7 +20,7 @@ jobs: distribution: 'adopt' java-version: '21' - name: Cache Gradle packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: | ~/.gradle/caches