From 5a13e8e8fe337c50966241c6c563a79e8a23700a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Feb 2023 06:57:12 +0000 Subject: [PATCH] Bump actions/cache from 2.1.7 to 3.2.6 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3.2.6. - [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.1.7...v3.2.6) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- .github/workflows/e2e.yml | 6 +++--- .github/workflows/elixir_credo.yml | 2 +- .github/workflows/elixir_formatting.yml | 2 +- .github/workflows/elixir_tests.yml | 2 +- .github/workflows/javascript_compile.yml | 4 ++-- .github/workflows/javascript_lint.yml | 4 ++-- 7 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 2629dc9f..e47110c3 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -24,7 +24,7 @@ jobs: otp-version: "24.0" # Define the OTP version [required] experimental-otp: true - name: Restore deps cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: | **/_build diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 28b819cb..9d6aae5b 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -50,7 +50,7 @@ jobs: elixir-version: "1.12.2" # Define the elixir version [required] otp-version: "24.0" # Define the OTP version [required] - name: Restore deps cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: deps key: ${{ runner.os }}-deps-v1-${{ hashFiles('**/mix.lock') }} @@ -62,7 +62,7 @@ jobs: with: node-version: "15" - name: Restore npm cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: assets/node_modules key: ${{ runner.os }}-npm-v2-${{ hashFiles('assets/package-lock.json') }} @@ -73,7 +73,7 @@ jobs: - run: npm run deploy working-directory: ./assets - name: Restore npm cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: e2e/node_modules key: ${{ runner.os }}-npm-v2-${{ hashFiles('e2e/package-lock.json') }} diff --git a/.github/workflows/elixir_credo.yml b/.github/workflows/elixir_credo.yml index 0155fa14..af41dd51 100644 --- a/.github/workflows/elixir_credo.yml +++ b/.github/workflows/elixir_credo.yml @@ -31,7 +31,7 @@ jobs: otp-version: "24.0" # Define the OTP version [required] experimental-otp: true - name: Restore deps cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: | **/_build diff --git a/.github/workflows/elixir_formatting.yml b/.github/workflows/elixir_formatting.yml index f7f82a30..0a91bfeb 100644 --- a/.github/workflows/elixir_formatting.yml +++ b/.github/workflows/elixir_formatting.yml @@ -31,7 +31,7 @@ jobs: otp-version: "24.0" # Define the OTP version [required] experimental-otp: true - name: Restore deps cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: | **/_build diff --git a/.github/workflows/elixir_tests.yml b/.github/workflows/elixir_tests.yml index 9eaa6d67..fb8ad81f 100644 --- a/.github/workflows/elixir_tests.yml +++ b/.github/workflows/elixir_tests.yml @@ -52,7 +52,7 @@ jobs: otp-version: "24.0" # Define the OTP version [required] experimental-otp: true - name: Restore deps cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: | **/_build diff --git a/.github/workflows/javascript_compile.yml b/.github/workflows/javascript_compile.yml index 843acf3d..13dc762f 100644 --- a/.github/workflows/javascript_compile.yml +++ b/.github/workflows/javascript_compile.yml @@ -31,7 +31,7 @@ jobs: otp-version: "24.0" # Define the OTP version [required] experimental-otp: true - name: Restore deps cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: | **/_build @@ -45,7 +45,7 @@ jobs: with: node-version: "15" - name: Restore npm cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: assets/node_modules key: ${{ runner.os }}-npm-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/javascript_lint.yml b/.github/workflows/javascript_lint.yml index ab5226a0..0767770d 100644 --- a/.github/workflows/javascript_lint.yml +++ b/.github/workflows/javascript_lint.yml @@ -31,7 +31,7 @@ jobs: otp-version: "24.0" # Define the OTP version [required] experimental-otp: true - name: Restore deps cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: | **/_build @@ -45,7 +45,7 @@ jobs: with: node-version: "15" - name: Restore npm cache - uses: actions/cache@v2.1.7 + uses: actions/cache@v3.2.6 with: path: assets/node_modules key: ${{ runner.os }}-npm-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/package-lock.json') }}