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/doc-preview-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout gh-pages branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: gh-pages
- name: Delete preview and history
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
with:
version: '1'
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Cache artifacts
uses: julia-actions/cache@v2
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Cache artifacts
uses: julia-actions/cache@v2
- name: Install JuliaFormatter and format
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/invalidations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
version: '1'
# current branch
- name: Check out repository in current branch
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Cache artifacts
uses: julia-actions/cache@v2
- name: Build package in current branch
Expand All @@ -33,7 +33,7 @@ jobs:
id: invs_branch
# default branch
- name: Check out repository in default branch
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.event.repository.default_branch }}
- name: Build package in default branch
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip ci')"
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Check spelling
uses: crate-ci/typos@master
2 changes: 1 addition & 1 deletion .github/workflows/test-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
JULIA_PKG_SERVER: ''
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up Julia
uses: julia-actions/setup-julia@v2
with:
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 @@ -33,7 +33,7 @@ jobs:
JULIA_PKG_SERVER: ''
steps:
- name: Check out repository
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up Julia
uses: julia-actions/setup-julia@v2
with:
Expand Down
Loading