From 235fb47d64f6b5b33fd96ecc77af2f132689fc8f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Sep 2022 05:06:45 +0000 Subject: [PATCH] build(deps): bump actions/cache from 2.1.5 to 3.0.8 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.5 to 3.0.8. - [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.5...v3.0.8) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 22 +++++++++++----------- .github/workflows/docs.yml | 2 +- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de13193..9c0dc8e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -47,13 +47,13 @@ jobs: elixir-version: "1.11.2" # Define the elixir version [required] otp-version: "23.0" # Define the OTP version [required] - name: Restore deps cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: deps key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }} restore-keys: ${{ runner.os }}-mix- - name: Restore build cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: _build key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }} @@ -78,13 +78,13 @@ jobs: elixir-version: "1.11.2" # Define the elixir version [required] otp-version: "23.0" # Define the OTP version [required] - name: Restore deps cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: deps key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }} restore-keys: ${{ runner.os }}-mix- - name: Restore build cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: _build key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }} @@ -109,13 +109,13 @@ jobs: elixir-version: "1.11.2" # Define the elixir version [required] otp-version: "23.0" # Define the OTP version [required] - name: Restore deps cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: deps key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }} restore-keys: ${{ runner.os }}-mix- - name: Restore build cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: _build key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }} @@ -140,13 +140,13 @@ jobs: elixir-version: "1.11.2" # Define the elixir version [required] otp-version: "23.0" # Define the OTP version [required] - name: Restore deps cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: deps key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }} restore-keys: ${{ runner.os }}-mix- - name: Restore build cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: _build key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }} @@ -171,13 +171,13 @@ jobs: elixir-version: "1.11.2" # Define the elixir version [required] otp-version: "23.0" # Define the OTP version [required] - name: Restore deps cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: deps key: ${{ runner.os }}-deps-${{ hashFiles('**/mix.lock') }} restore-keys: ${{ runner.os }}-mix- - name: Restore build cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: _build key: ${{ runner.os }}-build-${{ hashFiles('**/mix.lock') }} @@ -188,7 +188,7 @@ jobs: with: node-version: "15" - name: Restore npm cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.8 with: path: assets/node_modules key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 87429d2..9bdf3f5 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -23,7 +23,7 @@ jobs: otp-version: "23.0" # Define the OTP version [required] experimental-otp: true - name: Restore deps cache - uses: actions/cache@v2.1.5 + uses: actions/cache@v3.0.8 with: path: | **/_build