From 2a6a05f2b8301656423b2d16d986920d50210c78 Mon Sep 17 00:00:00 2001 From: intrigus-lgtm <60750685+intrigus-lgtm@users.noreply.github.com> Date: Thu, 13 Jul 2023 11:28:48 +0200 Subject: [PATCH] Use fork of action-docker-layer-caching to prevent warnings (#1794) https://github.com/satackey/action-docker-layer-caching hasn't been updated in quite some time. E.g. GitHub has started to complain about the deprecated `save-state` command. Solve this by switching to a newer fork. --- .github/workflows/docker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index d6cae2b17..7b7652ff3 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 - name: Cache for docker images - uses: satackey/action-docker-layer-caching@v0.0.11 + uses: jpribyl/action-docker-layer-caching@v0.1.1 # Ignore the failure of a step and avoid terminating the job. continue-on-error: true with: