From 06aecfdd6f465305918f622f652c24f2618c7ea0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Apr 2021 06:45:42 +0000 Subject: [PATCH] Bump actions/cache from v2.1.4 to v2.1.5 Bumps [actions/cache](https://github.com/actions/cache) from v2.1.4 to v2.1.5. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.4...1a9e2138d905efd099035b49d8b7a3888c653ca8) Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index adcccc248..13310e14d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,7 +39,7 @@ jobs: - name: Build Binary run: make build - name: Store Artifacts in Cache - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: ${{ github.workspace }}/nginx-asg-sync key: nginx-asg-sync-${{ github.run_id }}-${{ github.run_number }} @@ -65,7 +65,7 @@ jobs: - name: Checkout Repository uses: actions/checkout@v2 - name: Fetch Cached Artifacts - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: ${{ github.workspace }}/nginx-asg-sync key: nginx-asg-sync-${{ github.run_id }}-${{ github.run_number }} @@ -74,7 +74,7 @@ jobs: with: driver-opts: network=host - name: Cache Docker layers - uses: actions/cache@v2.1.4 + uses: actions/cache@v2.1.5 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-buildx-${{ github.sha }}