From fc0dc32af1a456737a0a12d8d42108364e687f2c Mon Sep 17 00:00:00 2001 From: Curtis Vogt Date: Fri, 10 Jan 2025 08:10:52 -0600 Subject: [PATCH] Use `julia-actions/cache` (#101) --- .github/workflows/CI.yml | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 292c9cd..eebe569 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -35,16 +35,7 @@ jobs: with: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - - uses: actions/cache@v1 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- + - uses: julia-actions/cache@v2 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 - uses: julia-actions/julia-processcoverage@v1