From 9486c15d8edbf8682e945e6a18fba1db2dbf81e6 Mon Sep 17 00:00:00 2001 From: Dorota Jarecka Date: Thu, 21 Mar 2024 10:50:50 -0400 Subject: [PATCH 1/2] testing continue-on-error --- .github/workflows/testing.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 5ac3bc4..82bd5aa 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -28,6 +28,8 @@ jobs: # the cache is created without them in the post run. # It also restores the cache if it exists. - uses: satackey/action-docker-layer-caching@v0.0.11 + # Ignore the failure of a step and avoid terminating the job. + continue-on-error: true with: key: tutorial-docker-cache-{hash} restore-keys: | From d4bcac615534a006ea4b3a0a1cf891310804ae1e Mon Sep 17 00:00:00 2001 From: Dorota Jarecka Date: Thu, 21 Mar 2024 11:23:09 -0400 Subject: [PATCH 2/2] changing dlc source --- .github/workflows/testing.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 82bd5aa..87c8505 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -27,7 +27,7 @@ jobs: # In this step, this action saves a list of existing images, # the cache is created without them in the post run. # It also restores the cache if it exists. - - 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: