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/CommonCI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
run: sudo rm -rf /opt/*
if: ${{ startsWith(inputs.os, 'ubuntu-') && inputs.localjll }}

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Set TMPDIR and create directory
# We have to use `${GITHUB_WORKSPACE}` instead of `github.workspace` because GitHub
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
cp LocalPreferences.toml test/

# Compile Julia if assertions are enabled
- uses: actions/checkout@v5
- uses: actions/checkout@v6
if: ${{ inputs.assertions }}
with:
repository: "JuliaLang/julia"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/Documenter.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: "1.11"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/PreviewCleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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 + push changes
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- linux-x86-ct6e-180-4tpu
- linux-x86-a2-48-a100-4gpu
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: "1.11"
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
needs: benchmark
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: "1"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-reactantjll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Extract ENZYMEXLA_COMMIT from WORKSPACE
id: extract_enzyme_jax_commit
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-check-bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Formatting Bazel files check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup buildifier
uses: jbajic/setup-buildifier@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-check-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
code-style-cpp:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: DoozyX/clang-format-lint-action@v0.20
with:
source: 'deps'
2 changes: 1 addition & 1 deletion .github/workflows/format-pr-bazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Formatting Bazel files check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup buildifier
uses: jbajic/setup-buildifier@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/format-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
with:
version: '1.10'
- uses: julia-actions/cache@v2
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
ref: main
- name: Install JuliaFormatter.jl
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/regenerate-mlir-bindings.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# Share repository cache between workflows.
repository-cache: true
bazelisk-version: 1.x
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Install JuliaFormatter.jl
shell: julia --color=yes {0}
run: |
Expand Down
Loading