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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# runners do not carry the `ubuntu-24.04` label, so this forces GitHub-hosted.
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
# The rhysd/actionlint image bundles shellcheck, so `run:` scripts in the
# workflows are shellcheck-linted too.
- name: "Lint workflows"
Expand All @@ -37,7 +37,7 @@ jobs:
name: "compute_affected_sublibraries.jl tests"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: "1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs-preview-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
contents: write
steps:
- name: "Checkout ${{ inputs.preview-branch }}"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: "${{ inputs.preview-branch }}"
- name: "Delete preview and squash 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 @@ -71,7 +71,7 @@ jobs:
continue-on-error: ${{ inputs.continue-on-error || inputs.julia-version == 'nightly' }}
runs-on: ${{ inputs.runner != '' && fromJson(inputs.runner) || (inputs.self-hosted && 'self-hosted' || inputs.os) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: "Setup Julia ${{ inputs.julia-version }}"
uses: julia-actions/setup-julia@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ${{ (inputs.apt-packages != '' || inputs.container != '') && fromJSON('["ubuntu-24.04"]') || (inputs.self-hosted && 'self-hosted' || inputs.os) }}
container: ${{ inputs.container }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: julia-actions/setup-julia@v3
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/downstream.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ jobs:
runs-on: "${{ inputs.self-hosted && 'self-hosted' || inputs.os }}"
steps:
- name: "Checkout ${{ github.repository }}"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Checkout Downstream ${{ inputs.owner }}/${{ inputs.repo }}"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: "${{ inputs.owner }}/${{ inputs.repo }}"
path: "downstream"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
formatted: "${{ steps.check-formatting.outputs.formatted }}"
formatting-changes: "${{ steps.check-formatting.outputs.formatting-changes }}"
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: julia-actions/setup-julia@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-suggestions-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
if: ${{ failure() }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: "Apply formatting changes"
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/grouped-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ jobs:
outputs:
matrix: ${{ steps.compute.outputs.matrix }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: "Checkout SciML/.github for the matrix script"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: SciML/.github
ref: "${{ inputs.dotgithub-ref }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/major-version-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
move-major-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
fetch-tags: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runic-suggestions-on-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: "Runic Suggestions"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: julia-actions/setup-julia@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/runic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
name: "Runic Format Check"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: julia-actions/setup-julia@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/spellcheck.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 Actions Repository"
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Check spelling"
uses: crate-ci/typos@v1.47.2
4 changes: 2 additions & 2 deletions .github/workflows/sublibrary-downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
projects: ${{ steps.list.outputs.projects }}
has_any: ${{ steps.list.outputs.has_any }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: "List lib/* sublibraries with a Project.toml (minus exclude)"
id: list
run: |
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
matrix:
project: ${{ fromJson(needs.discover.outputs.projects) }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: ${{ inputs.julia-version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sublibrary-project-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,11 +74,11 @@ jobs:
matrix: ${{ steps.compute.outputs.matrix }}
has_changes: ${{ steps.compute.outputs.has_changes }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- name: "Checkout SciML/.github for the detection script"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: SciML/.github
ref: "${{ inputs.dotgithub-ref }}"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ jobs:
container: ${{ inputs.container }}
timeout-minutes: ${{ inputs.timeout-minutes }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: "Setup Julia ${{ inputs.julia-version }}"
uses: julia-actions/setup-julia@v3
Expand All @@ -146,7 +146,7 @@ jobs:

- name: "Checkout SciML/.github for the develop-sources helper"
if: "${{ inputs.buildpkg && inputs.project != '@.' && inputs.project != '.' }}"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: SciML/.github
ref: "${{ inputs.dotgithub-ref }}"
Expand Down
Loading