Browse Source

Bump actions/cache from 2 to 3.0.1 (#1795)

Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1.
- [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/v2...v3.0.1)

---
updated-dependencies:
- dependency-name: actions/cache
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] 3 years ago
parent
commit
34db4ccab6

+ 2 - 2
.github/workflows/backend.yml

@@ -17,7 +17,7 @@ jobs:
           fetch-depth: 0
           fetch-depth: 0
           ref: ${{ github.event.pull_request.head.sha }}
           ref: ${{ github.event.pull_request.head.sha }}
       - name: Cache local Maven repository
       - name: Cache local Maven repository
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: ~/.m2/repository
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -28,7 +28,7 @@ jobs:
         with:
         with:
           java-version: 1.13
           java-version: 1.13
       - name: Cache SonarCloud packages
       - name: Cache SonarCloud packages
-        uses: actions/cache@v1
+        uses: actions/cache@v3
         with:
         with:
           path: ~/.sonar/cache
           path: ~/.sonar/cache
           key: ${{ runner.os }}-sonar
           key: ${{ runner.os }}-sonar

+ 2 - 2
.github/workflows/branch-deploy.yml

@@ -22,7 +22,7 @@ jobs:
         env:
         env:
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
       - name: Cache local Maven repository
       - name: Cache local Maven repository
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: ~/.m2/repository
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -45,7 +45,7 @@ jobs:
         id: buildx
         id: buildx
         uses: docker/setup-buildx-action@v1
         uses: docker/setup-buildx-action@v1
       - name: Cache Docker layers
       - name: Cache Docker layers
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: /tmp/.buildx-cache
           path: /tmp/.buildx-cache
           key: ${{ runner.os }}-buildx-${{ github.sha }}
           key: ${{ runner.os }}-buildx-${{ github.sha }}

+ 2 - 2
.github/workflows/cve.yaml

@@ -11,7 +11,7 @@ jobs:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
 
 
       - name: Cache local Maven repository
       - name: Cache local Maven repository
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: ~/.m2/repository
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -38,7 +38,7 @@ jobs:
         uses: docker/setup-buildx-action@v1
         uses: docker/setup-buildx-action@v1
 
 
       - name: Cache Docker layers
       - name: Cache Docker layers
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: /tmp/.buildx-cache
           path: /tmp/.buildx-cache
           key: ${{ runner.os }}-buildx-${{ github.sha }}
           key: ${{ runner.os }}-buildx-${{ github.sha }}

+ 1 - 1
.github/workflows/e2e-checks.yaml

@@ -16,7 +16,7 @@ jobs:
         with:
         with:
           ref: ${{ github.event.pull_request.head.sha }}
           ref: ${{ github.event.pull_request.head.sha }}
       - name: Cache local Maven repository
       - name: Cache local Maven repository
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: ~/.m2/repository
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}

+ 1 - 1
.github/workflows/frontend.yaml

@@ -25,7 +25,7 @@ jobs:
         with:
         with:
           node-version: "14"
           node-version: "14"
       - name: Cache node dependency
       - name: Cache node dependency
-        uses: actions/cache@v1
+        uses: actions/cache@v3
         with:
         with:
           path: kafka-ui-react-app/node_modules
           path: kafka-ui-react-app/node_modules
           key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
           key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}

+ 2 - 2
.github/workflows/master.yaml

@@ -11,7 +11,7 @@ jobs:
       - uses: actions/checkout@v2
       - uses: actions/checkout@v2
 
 
       - name: Cache local Maven repository
       - name: Cache local Maven repository
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: ~/.m2/repository
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -42,7 +42,7 @@ jobs:
         uses: docker/setup-buildx-action@v1
         uses: docker/setup-buildx-action@v1
 
 
       - name: Cache Docker layers
       - name: Cache Docker layers
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: /tmp/.buildx-cache
           path: /tmp/.buildx-cache
           key: ${{ runner.os }}-buildx-${{ github.sha }}
           key: ${{ runner.os }}-buildx-${{ github.sha }}

+ 2 - 2
.github/workflows/release.yaml

@@ -18,7 +18,7 @@ jobs:
           git config user.email github-actions@github.com
           git config user.email github-actions@github.com
 
 
       - name: Cache local Maven repository
       - name: Cache local Maven repository
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: ~/.m2/repository
           path: ~/.m2/repository
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
@@ -62,7 +62,7 @@ jobs:
         uses: docker/setup-buildx-action@v1
         uses: docker/setup-buildx-action@v1
 
 
       - name: Cache Docker layers
       - name: Cache Docker layers
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
         with:
           path: /tmp/.buildx-cache
           path: /tmp/.buildx-cache
           key: ${{ runner.os }}-buildx-${{ github.sha }}
           key: ${{ runner.os }}-buildx-${{ github.sha }}