From 4f583550936da633602acbe479e762707ce551a4 Mon Sep 17 00:00:00 2001 From: Artem Pelenitsyn Date: Thu, 30 Mar 2023 03:10:43 +0200 Subject: [PATCH] CI: no need to exclude caching on Windows anymore --- .github/workflows/validate.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index 71e8b5d2d..ab2f9d4ad 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -59,10 +59,7 @@ jobs: # See the following link for a breakdown of the following step # https://github.com/haskell/actions/issues/7#issuecomment-745697160 - # - # See https://github.com/haskell/cabal/pull/8739 for why Windows is excluded - - if: ${{ runner.os != 'Windows' }} - uses: actions/cache@v3 + - uses: actions/cache@v3 with: # validate.sh uses a special build dir path: | @@ -213,8 +210,7 @@ jobs: # https://github.com/haskell/actions/issues/7#issuecomment-745697160 # # See https://github.com/haskell/cabal/pull/8739 for why Windows is excluded - - if: ${{ runner.os != 'Windows' }} - uses: actions/cache@v3 + - uses: actions/cache@v3 with: # validate.sh uses a special build dir path: | -- 2.11.4.GIT