From 44bac0e00230da6cbbcd4a2a8d50b24fa5ff8ec1 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Fri, 11 Sep 2026 04:21:33 +0000 Subject: [PATCH] chore(deps): update all non-major dependencies --- .github/workflows/codeql.yml | 8 +++---- .github/workflows/conformance.yaml | 10 ++++----- .github/workflows/lint.yaml | 12 +++++----- .github/workflows/scorecard.yml | 8 +++---- .github/workflows/unit.yaml | 6 ++--- function-maven-plugin/pom.xml | 36 +++++++++++++++--------------- functions-framework-api/pom.xml | 30 ++++++++++++------------- invoker/conformance/pom.xml | 10 ++++----- invoker/core/pom.xml | 14 ++++++------ invoker/pom.xml | 28 +++++++++++------------ invoker/testfunction/pom.xml | 8 +++---- 11 files changed, 85 insertions(+), 85 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 841500f7..df5497ce 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -28,7 +28,7 @@ jobs: steps: - name: Harden Runner - uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0 + uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1 with: disable-sudo: true egress-policy: block @@ -43,11 +43,11 @@ jobs: uploads.github.com:443 - name: Checkout repository - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1 + uses: github/codeql-action/init@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 with: # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support languages: java @@ -65,6 +65,6 @@ jobs: (cd function-maven-plugin && mvn install) - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1 + uses: github/codeql-action/analyze@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 with: category: ${{ matrix.working-directory }} diff --git a/.github/workflows/conformance.yaml b/.github/workflows/conformance.yaml index 091a77a4..9bc68d2c 100644 --- a/.github/workflows/conformance.yaml +++ b/.github/workflows/conformance.yaml @@ -19,7 +19,7 @@ jobs: ] steps: - name: Harden Runner - uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0 + uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1 with: disable-sudo: true egress-policy: block @@ -32,18 +32,18 @@ jobs: repo.maven.apache.org:443 storage.googleapis.com:443 - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0 with: java-version: ${{ matrix.java }} distribution: temurin - name: Setup Go - uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6.4.0 + uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0 with: - go-version: '1.26' + go-version: '1.27' - name: Build API with Maven run: (cd functions-framework-api/ && mvn install) diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 2c88f621..8ed90605 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -13,16 +13,16 @@ jobs: runs-on: ubuntu-latest steps: - name: Harden Runner - uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0 + uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1 with: disable-sudo: true egress-policy: block allowed-endpoints: > github.com:443 repo.maven.apache.org:443 - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 - name: Set up JDK - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0 with: java-version: 17.x distribution: temurin @@ -38,13 +38,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Harden Runner - uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0 + uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1 with: egress-policy: audit # TODO: change to 'egress-policy: block' after couple of runs - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 # v2 minimum required + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 # v2 minimum required - name: Set up JDK - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0 with: java-version: 21.x distribution: temurin diff --git a/.github/workflows/scorecard.yml b/.github/workflows/scorecard.yml index ba1d718d..4fbc00a0 100644 --- a/.github/workflows/scorecard.yml +++ b/.github/workflows/scorecard.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Harden Runner - uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0 + uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1 with: disable-sudo: true egress-policy: block @@ -45,12 +45,12 @@ jobs: *.github.com:443 - name: "Checkout code" - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 with: persist-credentials: false - name: "Run analysis" - uses: ossf/scorecard-action@4eaacf0543bb3f2c246792bd56e8cdeffafb205a # v2.4.3 + uses: ossf/scorecard-action@2d1146689b8cda280b9bc96326124645441f03bc # v2.4.4 with: results_file: results.sarif results_format: sarif @@ -62,6 +62,6 @@ jobs: # Upload the results to GitHub's code scanning dashboard. - name: "Upload to code-scanning" - uses: github/codeql-action/upload-sarif@c10b8064de6f491fea524254123dbe5e09572f13 # v4.35.1 + uses: github/codeql-action/upload-sarif@b96794f015dfd88f77b49b1c93e0fa7110f94c63 # v4.38.0 with: sarif_file: results.sarif diff --git a/.github/workflows/unit.yaml b/.github/workflows/unit.yaml index fd3ffc97..e06ba34c 100644 --- a/.github/workflows/unit.yaml +++ b/.github/workflows/unit.yaml @@ -18,7 +18,7 @@ jobs: ] steps: - name: Harden Runner - uses: step-security/harden-runner@f808768d1510423e83855289c910610ca9b43176 # v2.17.0 + uses: step-security/harden-runner@e14015d583714f6e62063499dc959a02595150a1 # v2.21.1 with: disable-sudo: true egress-policy: block @@ -27,9 +27,9 @@ jobs: repo.maven.apache.org:443 api.adoptium.net:443 *.githubusercontent.com:443 - - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 + - uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0 - name: Set up JDK ${{ matrix.java }} - uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0 + uses: actions/setup-java@b6effb05e454b25005698d916606bdc6ffcbf961 # v5.7.0 with: java-version: ${{ matrix.java }} distribution: temurin diff --git a/function-maven-plugin/pom.xml b/function-maven-plugin/pom.xml index 328bcbdc..fbc62208 100644 --- a/function-maven-plugin/pom.xml +++ b/function-maven-plugin/pom.xml @@ -56,26 +56,26 @@ org.apache.maven maven-plugin-api - 3.9.14 + 3.9.16 provided org.apache.maven maven-core - 3.9.14 + 3.9.16 provided org.apache.maven.plugin-tools maven-plugin-annotations - 3.15.2 + 3.16.0 provided com.google.cloud.functions.invoker java-function-invoker - 2.0.1 + 2.0.2 @@ -105,62 +105,62 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.5.0 + 3.6.3 org.apache.maven.plugins maven-install-plugin - 3.1.2 + 3.1.4 org.apache.maven.plugins maven-deploy-plugin - 3.1.1 + 3.1.4 org.apache.maven.plugins maven-clean-plugin - 3.2.0 + 3.5.0 org.apache.maven.plugins maven-resources-plugin - 3.3.1 + 3.5.0 org.apache.maven.plugins maven-compiler-plugin - 3.11.0 + 3.16.0 org.apache.maven.plugins maven-surefire-plugin - 3.1.2 + 3.6.0 org.apache.maven.plugins maven-jar-plugin - 3.3.0 + 3.5.1 org.apache.maven.plugins maven-dependency-plugin - 3.6.1 + 3.11.0 org.apache.maven.plugins maven-shade-plugin - 3.5.3 + 3.6.2 org.apache.maven.plugins maven-plugin-plugin - 3.10.2 + 3.16.0 org.apache.maven.plugins maven-release-plugin - 3.0.1 + 3.3.1 @@ -168,7 +168,7 @@ org.apache.maven.plugins maven-plugin-plugin - 3.15.2 + 3.16.0 help-goal @@ -188,7 +188,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.5.0 + 3.6.3 org.apache.maven.plugins diff --git a/functions-framework-api/pom.xml b/functions-framework-api/pom.xml index 3d23fba9..7b995185 100644 --- a/functions-framework-api/pom.xml +++ b/functions-framework-api/pom.xml @@ -31,7 +31,7 @@ UTF-8 - 3.15.0 + 3.16.0 3.12.0 5.3.2 @@ -70,7 +70,7 @@ io.cloudevents cloudevents-api - 4.0.2 + 4.1.1 @@ -123,62 +123,62 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.5.0 + 3.6.3 org.apache.maven.plugins maven-install-plugin - 3.1.2 + 3.1.4 org.apache.maven.plugins maven-deploy-plugin - 3.1.1 + 3.1.4 org.apache.maven.plugins maven-clean-plugin - 3.2.0 + 3.5.0 org.apache.maven.plugins maven-resources-plugin - 3.3.1 + 3.5.0 org.apache.maven.plugins maven-compiler-plugin - 3.11.0 + 3.16.0 org.apache.maven.plugins maven-surefire-plugin - 3.1.2 + 3.6.0 org.apache.maven.plugins maven-jar-plugin - 3.3.0 + 3.5.1 org.apache.maven.plugins maven-dependency-plugin - 3.6.1 + 3.11.0 org.apache.maven.plugins maven-shade-plugin - 3.5.3 + 3.6.2 org.apache.maven.plugins maven-plugin-plugin - 3.10.2 + 3.16.0 org.apache.maven.plugins maven-release-plugin - 3.0.1 + 3.3.1 maven-javadoc-plugin @@ -217,7 +217,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.5.0 + 3.6.3 org.apache.maven.plugins diff --git a/invoker/conformance/pom.xml b/invoker/conformance/pom.xml index 454f3e23..08569b75 100644 --- a/invoker/conformance/pom.xml +++ b/invoker/conformance/pom.xml @@ -28,22 +28,22 @@ com.google.cloud.functions functions-framework-api - 2.0.0 + 2.0.2 com.google.code.gson gson - 2.13.2 + 2.14.0 io.cloudevents cloudevents-core - 4.0.1 + 4.1.1 io.cloudevents cloudevents-json-jackson - 4.0.1 + 4.1.1 @@ -53,7 +53,7 @@ com.google.cloud.functions function-maven-plugin - 1.0.0 + 1.0.2 diff --git a/invoker/core/pom.xml b/invoker/core/pom.xml index c4093f5b..674c3493 100644 --- a/invoker/core/pom.xml +++ b/invoker/core/pom.xml @@ -23,8 +23,8 @@ 5.3.2 17 17 - 4.0.1 - 12.1.8 + 4.1.1 + 12.1.10 @@ -46,7 +46,7 @@ com.google.cloud.functions functions-framework-api - 2.0.0 + 2.0.2 io.cloudevents @@ -66,7 +66,7 @@ com.google.code.gson gson - 2.13.2 + 2.14.0 com.ryanharter.auto.value @@ -100,7 +100,7 @@ org.slf4j slf4j-jdk14 - 2.0.17 + 2.0.19 com.beust @@ -151,7 +151,7 @@ maven-compiler-plugin - 3.15.0 + 3.16.0 @@ -169,7 +169,7 @@ maven-jar-plugin - 3.5.0 + 3.5.1 diff --git a/invoker/pom.xml b/invoker/pom.xml index c4ee1ef1..5f45dcc7 100644 --- a/invoker/pom.xml +++ b/invoker/pom.xml @@ -65,7 +65,7 @@ com.google.cloud.functions functions-framework-api - 2.0.1 + 2.0.2 @@ -88,62 +88,62 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.5.0 + 3.6.3 org.apache.maven.plugins maven-install-plugin - 3.1.2 + 3.1.4 org.apache.maven.plugins maven-deploy-plugin - 3.1.1 + 3.1.4 org.apache.maven.plugins maven-clean-plugin - 3.2.0 + 3.5.0 org.apache.maven.plugins maven-resources-plugin - 3.3.1 + 3.5.0 org.apache.maven.plugins maven-compiler-plugin - 3.11.0 + 3.16.0 org.apache.maven.plugins maven-surefire-plugin - 3.1.2 + 3.6.0 org.apache.maven.plugins maven-jar-plugin - 3.3.0 + 3.5.1 org.apache.maven.plugins maven-dependency-plugin - 3.6.1 + 3.11.0 org.apache.maven.plugins maven-shade-plugin - 3.5.3 + 3.6.2 org.apache.maven.plugins maven-plugin-plugin - 3.10.2 + 3.16.0 org.apache.maven.plugins maven-release-plugin - 3.0.1 + 3.3.1 @@ -156,7 +156,7 @@ org.apache.maven.plugins maven-enforcer-plugin - 3.5.0 + 3.6.3 org.apache.maven.plugins diff --git a/invoker/testfunction/pom.xml b/invoker/testfunction/pom.xml index 47b946a9..c6b6139a 100644 --- a/invoker/testfunction/pom.xml +++ b/invoker/testfunction/pom.xml @@ -20,7 +20,7 @@ com.google.cloud.functions functions-framework-api - 2.0.0 + 2.0.2