Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/invalidations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading