From f904f4cb3bce9969d91edb85b19d66bb15438c6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 10:40:25 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 (#440) Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/build-pdb.yml | 2 +- .github/workflows/test-cockroach.yml | 2 +- .github/workflows/test-db2.yml | 2 +- .github/workflows/test-h2.yml | 2 +- .github/workflows/test-h2remote.yml | 2 +- .github/workflows/test-h2v2.yml | 2 +- .github/workflows/test-h2v2remote.yml | 2 +- .github/workflows/test-oracle.yml | 2 +- .github/workflows/test-postgresql.yml | 2 +- .github/workflows/tests-mysql.yml | 2 +- .github/workflows/tests-sqlserver.yml | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/build-pdb.yml b/.github/workflows/build-pdb.yml index 68b67671..83059d40 100644 --- a/.github/workflows/build-pdb.yml +++ b/.github/workflows/build-pdb.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-cockroach.yml b/.github/workflows/test-cockroach.yml index b263819c..81c9c292 100644 --- a/.github/workflows/test-cockroach.yml +++ b/.github/workflows/test-cockroach.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-db2.yml b/.github/workflows/test-db2.yml index c918d4b4..141f7e6d 100644 --- a/.github/workflows/test-db2.yml +++ b/.github/workflows/test-db2.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-h2.yml b/.github/workflows/test-h2.yml index 306f3bb8..036ee154 100644 --- a/.github/workflows/test-h2.yml +++ b/.github/workflows/test-h2.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-h2remote.yml b/.github/workflows/test-h2remote.yml index 1c141240..2ffedbfa 100644 --- a/.github/workflows/test-h2remote.yml +++ b/.github/workflows/test-h2remote.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-h2v2.yml b/.github/workflows/test-h2v2.yml index 551a388c..4921d2a8 100644 --- a/.github/workflows/test-h2v2.yml +++ b/.github/workflows/test-h2v2.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-h2v2remote.yml b/.github/workflows/test-h2v2remote.yml index bf6c04f5..21b7695a 100644 --- a/.github/workflows/test-h2v2remote.yml +++ b/.github/workflows/test-h2v2remote.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-oracle.yml b/.github/workflows/test-oracle.yml index fe8f32f6..bf2471f6 100644 --- a/.github/workflows/test-oracle.yml +++ b/.github/workflows/test-oracle.yml @@ -27,7 +27,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/test-postgresql.yml b/.github/workflows/test-postgresql.yml index 12a3b096..0d0e534f 100644 --- a/.github/workflows/test-postgresql.yml +++ b/.github/workflows/test-postgresql.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/tests-mysql.yml b/.github/workflows/tests-mysql.yml index 8e3a6ec0..1dde4bdf 100644 --- a/.github/workflows/tests-mysql.yml +++ b/.github/workflows/tests-mysql.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/tests-sqlserver.yml b/.github/workflows/tests-sqlserver.yml index 6981824a..46a168bd 100644 --- a/.github/workflows/tests-sqlserver.yml +++ b/.github/workflows/tests-sqlserver.yml @@ -26,7 +26,7 @@ jobs: distribution: zulu - name: Cache Maven packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}