From ffd8a4fcc56d6e0f833914383a03f0ea0c15200d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Mar 2024 20:39:01 +0000 Subject: [PATCH] build(deps): bump actions/cache from 4.0.1 to 4.0.2 Bumps [actions/cache](https://github.com/actions/cache) from 4.0.1 to 4.0.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/ab5e6d0c87105b4c9c2047343972218f562e4319...0c45773b623bea8c8e75f6c82b208c3cf94ea4f9) --- 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 | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6e06de903..4896655e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,7 +67,7 @@ jobs: for f in secureboot.{{pk,null.pk,kek,db}.auth,db.{crt,arn}}; do ln -sr "cert/gardenlinux-$f" "cert/$f" done - - uses: actions/cache/save@ab5e6d0c87105b4c9c2047343972218f562e4319 # pin@v3 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin@v3 with: path: cert key: cert-${{ github.run_id }} @@ -99,7 +99,7 @@ jobs: git update-index --assume-unchanged VERSION - name: build base-${{ matrix.arch }} run: ./build base-${{ matrix.arch }} - - uses: actions/cache/save@ab5e6d0c87105b4c9c2047343972218f562e4319 # pin@v3 + - uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin@v3 with: path: .build key: base-${{ matrix.arch }}-${{ github.run_id }} @@ -133,7 +133,7 @@ jobs: podman build --squash --tag test --build-arg base="$OCI_IMAGE_TAG" tests podman save --format oci-archive test > test.oci - name: upload test container - uses: actions/cache/save@ab5e6d0c87105b4c9c2047343972218f562e4319 # pin@v3 + uses: actions/cache/save@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin@v3 with: path: test.oci key: test_container:${{ matrix.arch }}-${{ github.run_id }} @@ -175,7 +175,7 @@ jobs: bin/garden-version "${{ needs.version.outputs.version }}" | tee VERSION git update-index --assume-unchanged VERSION - name: load cert cache - uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # pin@v3 + uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin@v3 with: path: cert key: cert-${{ github.run_id }} @@ -191,13 +191,13 @@ jobs: role-session-name: ${{ secrets.aws_oidc_session }} aws-region: ${{ secrets.aws_region }} - name: load bootstrap stage cache - uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # pin@v3 + uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin@v3 with: path: .build key: base-${{ matrix.arch }}-${{ github.run_id }} fail-on-cache-miss: true - name: download test container cache - uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # pin@v3 + uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin@v3 with: path: test.oci key: test_container:${{ matrix.arch }}-${{ github.run_id }} @@ -255,7 +255,7 @@ jobs: bin/garden-version "${{ needs.version.outputs.version }}" | tee VERSION git update-index --assume-unchanged VERSION - name: load bootstrap stage cache - uses: actions/cache/restore@ab5e6d0c87105b4c9c2047343972218f562e4319 # pin@v3 + uses: actions/cache/restore@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # pin@v3 with: path: .build key: base-${{ matrix.arch }}-${{ github.run_id }}