Skip to content
Draft
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/CI-localjll.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: Clean `/opt`
run: sudo rm -rf /opt/*
if: ${{ startsWith(matrix.os, 'ubuntu-') }}
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Set and create TMPDIR
# We have to use `${GITHUB_WORKSPACE}` instead of `github.workspace` because GitHub
# is terrible and the two don't match inside containers:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ jobs:
# https://github.com/actions/runner/issues/2058
run: |
echo "TMPDIR=${GITHUB_WORKSPACE}/tmp" >> ${GITHUB_ENV}
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Create TMPDIR
run: |
mkdir -p ${{ env.TMPDIR }}
Expand All @@ -119,7 +119,7 @@ jobs:
with:
version: ${{ matrix.version }}
- uses: julia-actions/cache@v2
- uses: actions/checkout@v4
- uses: actions/checkout@v5
if: ${{ matrix.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@v4
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: "1"
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@v4
uses: actions/checkout@v5
with:
ref: gh-pages
- name: Delete preview and history + push changes
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/benchmark_aggregate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
if: ${{ !contains(github.event.head_commit.message, '[skip benchmarks]') && ! github.event.pull_request.head.repo.fork }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Download Buildkite Artifacts
id: download
uses: EnricoMi/download-buildkite-artifact-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
env:
TMPDIR: ${{ github.workspace }}/tmp
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Create TMPDIR
run: |
mkdir -p ${{ env.TMPDIR }}
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@v4
- uses: actions/checkout@v5

- 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@v4
- uses: actions/checkout@v5
- uses: DoozyX/[email protected]
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@v4
- uses: actions/checkout@v5

- 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@v4
- uses: actions/checkout@v5
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 @@ -26,7 +26,7 @@ jobs:
# Share repository cache between workflows.
repository-cache: true
bazelisk-version: 1.x
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install JuliaFormatter.jl
shell: julia --color=yes {0}
run: |
Expand Down
Loading