From c4cce91bedd116d2b2389e0b37f8d2bba135e6f3 Mon Sep 17 00:00:00 2001 From: Fabian-Lars <118197967+FabianLars-crabnebula@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:27:51 +0200 Subject: [PATCH 1/2] fix: Ignore errors on cache save --- action.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/action.yml b/action.yml index f0815b1..b17af74 100644 --- a/action.yml +++ b/action.yml @@ -75,6 +75,7 @@ runs: curl -L https://cdn.crabnebula.app/download/crabnebula/cn-cli/latest/platform/windows-binary-x86_64 --output cn - uses: actions/cache/save@v4 + continue-on-error: true with: path: ${{ inputs.path }}/cn key: ${{ steps.restore-cache.outputs.cache-primary-key }} From 357e82a513ceabef01b929a5cdabffc2e65942d5 Mon Sep 17 00:00:00 2001 From: Fabian-Lars <118197967+FabianLars-crabnebula@users.noreply.github.com> Date: Wed, 11 Sep 2024 11:30:28 +0200 Subject: [PATCH 2/2] Create skip-cache-errors.md --- .changes/skip-cache-errors.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changes/skip-cache-errors.md diff --git a/.changes/skip-cache-errors.md b/.changes/skip-cache-errors.md new file mode 100644 index 0000000..f1ae439 --- /dev/null +++ b/.changes/skip-cache-errors.md @@ -0,0 +1,5 @@ +--- +action: patch +--- + +Fixed an issue that caused the action to fail if there were multiple concurrent runners with the same OS.