From cd1eaaa4d42c22a99d3f4c13f77bf0c154614877 Mon Sep 17 00:00:00 2001 From: Nathan Zimmerberg <39104088+nhz2@users.noreply.github.com> Date: Wed, 6 Sep 2023 09:27:34 -0400 Subject: [PATCH] Update github actions (#29) --- .github/workflows/CI.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4dd6253..72efc95 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -29,24 +29,12 @@ jobs: - os: macOS-latest arch: x86 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v1 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: actions/setup-python@v4 - with: - python-version: '3.11' + - uses: julia-actions/cache@v1 - name: Develop packages run: | julia --project=test -e ' @@ -68,6 +56,6 @@ jobs: cd test && julia --project --color=yes --depwarn=yes --warn-overwrite=yes --warn-scope=yes --check-bounds=yes --code-coverage=user runtests.jl - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v1 + - uses: codecov/codecov-action@v3 with: file: lcov.info \ No newline at end of file