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/CheckCompatBounds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: "Setup Julia ${{ inputs.julia-version }}"
uses: julia-actions/setup-julia@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CodeQL.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
echo "is_fork=true" >> "$GITHUB_OUTPUT"
fi

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- if: ${{ needs.detect.outputs.changed == 'true' }}
uses: actions/checkout@v6
uses: actions/checkout@v7

- if: ${{ needs.detect.outputs.changed == 'true' }}
uses: github/codeql-action/init@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CompatHelper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
# which Project.tomls actually exist before passing it in.
# CompatHelper otherwise crashes on the first missing subdir and
# silently drops every later subdir in the list.
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: "Check if Julia is already available in the PATH"
id: julia_in_path
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: "Install apt packages"
if: "${{ inputs.apt-packages != '' && runner.os == 'Linux' }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/FormatCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:

steps:
- name: "Check out PR head"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ github.event.pull_request.head.repo.full_name }}
ref: ${{ github.event.pull_request.head.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/FormatPullRequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
HEAD_REF=$(gh api repos/${{ github.repository }}/pulls/${{ github.event.issue.number }} --jq '.head.ref')
echo "head_ref=$HEAD_REF" >> $GITHUB_OUTPUT

- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
ref: ${{ steps.pr.outputs.head_ref }}
token: ${{ secrets.FORMATPULLREQUEST_PAT || secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/IntegrationTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
with:
name: "integration-test-skip-${{ steps.skip_artifact.outputs.key }}"
path: ${{ steps.skip_artifact.outputs.path }}
- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: "${{ steps.classify.outputs.triggers == 'true' && steps.gate.outputs.skip != 'true' }}"
with:
ref: ${{ github.event.pull_request.head.sha || github.sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/LiterateCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: "${{ inputs.julia-version }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Registrator.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
save-always: false

- name: "Checkout package"
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
path: package
fetch-depth: 0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ jobs:
run: |
echo "PR has no changes in this caller's scope; tests skipped."

- uses: actions/checkout@v6
- uses: actions/checkout@v7
if: "${{ steps.classify.outputs.triggers == 'true' }}"

- name: "Install apt packages"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/VersionCheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
pull-requests: read

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: ITensor/ITensorActions/.github/actions/classify-pr@main
id: classify
Expand Down
Loading