From 31b150b9e909d823f7346e8ff804231bed2ea497 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Sep 2023 14:44:00 +0000 Subject: [PATCH] Bump actions/cache from 3.3.1 to 3.3.2 Bumps [actions/cache](https://github.com/actions/cache) from 3.3.1 to 3.3.2. - [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/v3.3.1...v3.3.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aaf871633..85d512d9e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -195,7 +195,7 @@ jobs: # We'll tell BuildX to `--cache-from` this folder to speed up the build # of our `appscope-builder` image. - name: Setup Docker Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: /tmp/.buildx-cache key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-buildx-${{ github.sha }} @@ -203,7 +203,7 @@ jobs: # Cache downloaded Go dependencies. - name: Setup Go Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: | ~/.cache/go-build @@ -217,7 +217,7 @@ jobs: # Cache the cmocka build. Use a key based on a hash of all the files used # in the build. - name: Setup cmocka Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/cmocka key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-cmocka-${{ hashFiles('contrib/*', 'contrib/cmocka/**') }} @@ -226,7 +226,7 @@ jobs: # Cache the funchook build. Use a key based on a hash of all the files # used in the build. - name: Setup funchook Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/funchook key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-funchook-${{ hashFiles('contrib/*', 'contrib/funchook/**') }} @@ -235,7 +235,7 @@ jobs: # Cache the funchook build. Use a key based on a hash of all the files # used in the build. - name: Setup pcre2 Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/pcre2 key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-pcre2-${{ hashFiles('contrib/*', 'contrib/cpre2/**') }} @@ -244,7 +244,7 @@ jobs: # Cache the openssl build. Use a key based on a hash of all the files # used in the build. - name: Setup openssl Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/openssl key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-openssl-${{ hashFiles('contrib/*', 'contrib/openssl/**') }} @@ -253,7 +253,7 @@ jobs: # Cache the ls-hpack build. Use a key based on a hash of all the files # used in the build. - name: Setup ls-hpack Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/ls-hpack key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-ls-hpack-${{ hashFiles('contrib/*', 'contrib/ls-hpack/**') }} @@ -262,7 +262,7 @@ jobs: # Cache the musl build. Use a key based on a hash of all the files # used in the build. - name: Setup musl Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/musl key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-musl-${{ hashFiles('contrib/*', 'contrib/musl/**') }} @@ -271,7 +271,7 @@ jobs: # Cache the libunwind build. Use a key based on a hash of all the files # used in the build. - name: Setup libunwind Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/libunwind key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-libunwind-${{ hashFiles('contrib/*', 'contrib/libunwind/**') }} @@ -280,7 +280,7 @@ jobs: # Cache the coredumper build. Use a key based on a hash of all the files # used in the build. - name: Setup coredumper Cache - uses: actions/cache@v3.3.1 + uses: actions/cache@v3.3.2 with: path: contrib/build/coredumper key: ${{ runner.os }}-${{ steps.env.outputs.arch }}-coredumper-${{ hashFiles('contrib/*', 'contrib/coredumper/**') }}