From a8bf1dc43414fba601ae026ea34eba4b205b3f2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Mar 2022 01:25:04 +0000 Subject: [PATCH] Build(deps): Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/ember.yml | 2 +- .github/workflows/ember_with_plugins.yml | 2 +- .github/workflows/linting.yml | 4 ++-- .github/workflows/tests.yml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ember.yml b/.github/workflows/ember.yml index 59f75f060d11d..63fa3511ed991 100644 --- a/.github/workflows/ember.yml +++ b/.github/workflows/ember.yml @@ -37,7 +37,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir.outputs.dir }} diff --git a/.github/workflows/ember_with_plugins.yml b/.github/workflows/ember_with_plugins.yml index ecb934bb56aec..52b4277415b30 100644 --- a/.github/workflows/ember_with_plugins.yml +++ b/.github/workflows/ember_with_plugins.yml @@ -26,7 +26,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir.outputs.dir }} diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 1577579084403..26e4fc1e73d0b 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -28,7 +28,7 @@ jobs: git config --global user.name "Discourse CI" - name: Bundler cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor/bundle key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }} @@ -48,7 +48,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir.outputs.dir }} diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 10ce429d82f1d..7ff02267298e4 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -56,7 +56,7 @@ jobs: sudo -u postgres psql -c "CREATE ROLE $PGUSER LOGIN SUPERUSER PASSWORD '$PGPASSWORD';" - name: Bundler cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor/bundle key: ${{ runner.os }}-gem-${{ hashFiles('**/Gemfile.lock') }} @@ -76,7 +76,7 @@ jobs: run: echo "::set-output name=dir::$(yarn cache dir)" - name: Yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: yarn-cache with: path: ${{ steps.yarn-cache-dir.outputs.dir }} @@ -92,7 +92,7 @@ jobs: run: bin/rake plugin:install_all_official - name: Fetch app state cache - uses: actions/cache@v2 + uses: actions/cache@v3 id: app-cache with: path: tmp/app-cache