From 9b339809f3e2fe2e0324dd5c491ab1eef63c9735 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jan 2024 01:07:49 +0000 Subject: [PATCH] ci: bump actions/cache from 3.3.2 to 3.3.3 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.2 to 3.3.3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3.3.2...v3.3.3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/deploy.yml | 2 +- .github/workflows/integration-tests-h2.yml | 2 +- .github/workflows/integration-tests-mysql.yml | 2 +- .github/workflows/integration-tests-postgres.yml | 2 +- .github/workflows/populate-maven-cache.yml | 2 +- .github/workflows/static-analysis.yml | 14 +++++++------- .github/workflows/unit-tests.yml | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 7fc3693a2..c528dfd3e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -38,7 +38,7 @@ jobs: java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/integration-tests-h2.yml b/.github/workflows/integration-tests-h2.yml index 6a5e93601..1354a6bf2 100644 --- a/.github/workflows/integration-tests-h2.yml +++ b/.github/workflows/integration-tests-h2.yml @@ -46,7 +46,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: ${{ matrix.java-version }} # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/integration-tests-mysql.yml b/.github/workflows/integration-tests-mysql.yml index 3be03bdf7..f98c7e911 100644 --- a/.github/workflows/integration-tests-mysql.yml +++ b/.github/workflows/integration-tests-mysql.yml @@ -58,7 +58,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/integration-tests-postgres.yml b/.github/workflows/integration-tests-postgres.yml index f7b79280a..0721c3402 100644 --- a/.github/workflows/integration-tests-postgres.yml +++ b/.github/workflows/integration-tests-postgres.yml @@ -49,7 +49,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/populate-maven-cache.yml b/.github/workflows/populate-maven-cache.yml index b3f84c98b..a74d91637 100644 --- a/.github/workflows/populate-maven-cache.yml +++ b/.github/workflows/populate-maven-cache.yml @@ -43,7 +43,7 @@ jobs: java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index b7f4391da..ae6e7ddd9 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -31,7 +31,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} @@ -56,7 +56,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} @@ -81,7 +81,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} @@ -106,7 +106,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} @@ -217,7 +217,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} @@ -242,7 +242,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} @@ -274,7 +274,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 839c7b4e2..9c0accf0c 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -31,7 +31,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }} @@ -56,7 +56,7 @@ jobs: distribution: 'adopt' # https://github.com/actions/setup-java#supported-distributions java-version: '8' # https://github.com/actions/setup-java#supported-version-syntax - name: Restore existing cache - uses: actions/cache@v3.3.2 # https://github.com/actions/cache + uses: actions/cache@v3.3.3 # https://github.com/actions/cache with: # https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#input-parameters-for-the-cache-action key: maven-repository-${{ hashFiles('pom.xml') }}