From 17a90956128c7e3665e1fc2133a030b07ca77bdc Mon Sep 17 00:00:00 2001 From: Oliver Gugger Date: Thu, 12 Oct 2023 12:51:24 +0200 Subject: [PATCH] GitHub: update caching to maintained fork, continue on error Since the currently failing step of the sqlc check job is only a cache, it shouldn't cause the whole job to fail. So we continue on error but also switch to a maintained fork of the cache action which should fix the error in the first place. --- .github/workflows/main.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e825ed3..d39ed59 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -51,7 +51,8 @@ jobs: uses: actions/checkout@v3 - name: docker image cache - uses: satackey/action-docker-layer-caching@v0.0.11 + uses: jpribyl/action-docker-layer-caching@v0.1.1 + continue-on-error: true - name: Generate sql models run: make sqlc-check