diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index e3b35e09..0d2caf7e 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -10,19 +10,19 @@ jobs: gradle: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 - uses: actions/setup-java@v5 with: distribution: temurin java-version: 11 - name: Set up Gradle - uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 + uses: gradle/actions/setup-gradle@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 - name: Test and Assemble and ApiDiff with Gradle run: ./gradlew assemble apiDiff check jacocoTestReport --continue --console=plain - - uses: codecov/codecov-action@671740ac38dd9b0130fbe1cec585b89eea48d3de + - uses: codecov/codecov-action@fb8b3582c8e4def4969c97caa2f19720cb33a72f with: flags: unittests - uses: actions/upload-artifact@v7 diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml index 6e44d99b..414417f7 100644 --- a/.github/workflows/gradle-wrapper-validation.yml +++ b/.github/workflows/gradle-wrapper-validation.yml @@ -6,5 +6,5 @@ jobs: name: "validation/gradlew" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v6 - - uses: gradle/actions/wrapper-validation@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # pin@v6.1.0 \ No newline at end of file + - uses: actions/checkout@v7 + - uses: gradle/actions/wrapper-validation@3f131e8634966bd73d06cc69884922b02e6faf92 # pin@v6.2.0 \ No newline at end of file diff --git a/.github/workflows/java-release.yml b/.github/workflows/java-release.yml index 1ab703f9..bf063ff5 100644 --- a/.github/workflows/java-release.yml +++ b/.github/workflows/java-release.yml @@ -29,7 +29,7 @@ jobs: steps: # Checkout the code - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: fetch-depth: 0 diff --git a/.github/workflows/rl-secure.yml b/.github/workflows/rl-secure.yml index ccf2246a..4af4af64 100644 --- a/.github/workflows/rl-secure.yml +++ b/.github/workflows/rl-secure.yml @@ -32,7 +32,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v6 + uses: actions/checkout@v7 with: fetch-depth: 0 @@ -43,7 +43,7 @@ jobs: java-version: ${{ inputs.java-version }} - name: Set up Gradle - uses: gradle/actions/setup-gradle@50e97c2cd7a37755bbfafc9c5b7cafaece252f6e # v6.1.0 + uses: gradle/actions/setup-gradle@3f131e8634966bd73d06cc69884922b02e6faf92 # v6.2.0 - name: Test and Assemble and ApiDiff with Gradle run: ./gradlew assemble apiDiff check jacocoTestReport --continue --console=plain diff --git a/.github/workflows/snyk.yml b/.github/workflows/snyk.yml index 9e88507b..17721020 100644 --- a/.github/workflows/snyk.yml +++ b/.github/workflows/snyk.yml @@ -30,7 +30,7 @@ jobs: - if: github.actor == 'dependabot[bot]' || github.event_name == 'merge_group' run: exit 0 # Skip unnecessary test runs for dependabot and merge queues. Artifically flag as successful, as this is a required check for branch protection. - - uses: actions/checkout@v6 + - uses: actions/checkout@v7 with: ref: ${{ github.event.pull_request.head.sha || github.ref }} diff --git a/lib/build.gradle b/lib/build.gradle index 66c204cc..30604463 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -128,8 +128,8 @@ javadoc { } dependencies { - implementation 'com.fasterxml.jackson.core:jackson-core:2.21.3' - implementation 'com.fasterxml.jackson.core:jackson-databind:2.21.3' + implementation 'com.fasterxml.jackson.core:jackson-core:2.22.0' + implementation 'com.fasterxml.jackson.core:jackson-databind:2.22.0' testImplementation 'org.bouncycastle:bcprov-jdk15on:1.70' testImplementation 'junit:junit:4.13.2'