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/auto-rebase.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
rebase:
name: Rebase
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0
- name: Automatic Rebase
Expand Down
12 changes: 7 additions & 5 deletions .github/workflows/exercise-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ on:

jobs:
test:
name: Julia ${{ matrix.julia-version }} - ubuntu-24.04
runs-on: ubuntu-24.04
name: Julia ${{ matrix.julia-version }} - ubuntu-26.04
runs-on: ubuntu-26.04
strategy:
fail-fast: false
matrix:
Expand All @@ -28,8 +28,6 @@ jobs:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0

- uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32
with:
version: ${{ matrix.julia-version }}

- uses: julia-actions/cache@a45e8fa8be21c18a06b7177052533149e61e9b38

Expand All @@ -41,14 +39,18 @@ jobs:

test-runner:
name: Julia Test Runner
runs-on: ubuntu-24.04
runs-on: ubuntu-26.04

steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0

- name: Pull julia-test-runner image
run: docker pull exercism/julia-test-runner

- uses: julia-actions/setup-julia@fa02766e078afaaf09b14210362cee14137e6a32
with:
version: nightly

- name: Install Julia dependencies
run: julia --color=yes --project -e "using Pkg; Pkg.instantiate()"

Expand Down
Loading