diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index ffb8993e..977a6d9c 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -31,7 +31,7 @@ jobs: - name: Check out repository uses: actions/checkout@v6 - name: Cache artifacts - uses: julia-actions/cache@v2 + uses: julia-actions/cache@v3 - name: Install dependencies run: | julia --project=docs/ -e 'using Pkg; diff --git a/.github/workflows/format.yml b/.github/workflows/format.yml index 1c12b660..d0f30697 100644 --- a/.github/workflows/format.yml +++ b/.github/workflows/format.yml @@ -13,7 +13,7 @@ jobs: - name: Set up Julia uses: julia-actions/setup-julia@v2 - name: Cache artifacts - uses: julia-actions/cache@v2 + uses: julia-actions/cache@v3 - name: Install JuliaFormatter and format run: julia -e 'import Pkg; Pkg.add("JuliaFormatter"); using JuliaFormatter; format(".")' - name: Create pull request diff --git a/.github/workflows/invalidations.yml b/.github/workflows/invalidations.yml index b773cffd..6d5b942a 100644 --- a/.github/workflows/invalidations.yml +++ b/.github/workflows/invalidations.yml @@ -25,7 +25,7 @@ jobs: - name: Check out repository in current branch uses: actions/checkout@v6 - name: Cache artifacts - uses: julia-actions/cache@v2 + uses: julia-actions/cache@v3 - name: Build package in current branch uses: julia-actions/julia-buildpkg@v1 - name: Count invalidations in current branch diff --git a/.github/workflows/test-master.yml b/.github/workflows/test-master.yml index 8fe3e979..0101c878 100644 --- a/.github/workflows/test-master.yml +++ b/.github/workflows/test-master.yml @@ -37,7 +37,7 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - name: Cache artifacts - uses: julia-actions/cache@v2 + uses: julia-actions/cache@v3 - name: Build package uses: julia-actions/julia-buildpkg@v1 - name: Run tests diff --git a/.github/workflows/test-pull-request.yml b/.github/workflows/test-pull-request.yml index 75b6596c..cf6770c3 100644 --- a/.github/workflows/test-pull-request.yml +++ b/.github/workflows/test-pull-request.yml @@ -40,7 +40,7 @@ jobs: version: ${{ matrix.version }} arch: ${{ matrix.arch }} - name: Cache artifacts - uses: julia-actions/cache@v2 + uses: julia-actions/cache@v3 - name: Build package uses: julia-actions/julia-buildpkg@v1 - name: Run tests