Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[INFRA] Use latest Ubuntu machines for CI #3981

Merged
merged 2 commits into from
Sep 15, 2023
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ parameters:
jobs:
host_docs:
machine:
image: ubuntu-2004:202111-01
image: ubuntu-2204:current
environment:
GITHUB_ARTIFACT_URL: << pipeline.parameters.GITHUB_RUN_URL >>/doc.zip
steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
jobs:
min_requirements:
if: github.repository == 'nilearn/nilearn'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
name: Python 3.7, minimal requirements without Matplotlib
defaults:
run:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:

min_requirements_matplotlib:
if: github.repository == 'nilearn/nilearn'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
name: Python 3.7, minimal requirements with Matplotlib
defaults:
run:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trigger-hosting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
push:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
# Run the job only if the "Documentation builder" workflow succeeded
# Prevents this workflow from running on a fork.
# To test this workflow on a fork remove the `github.repository == nilearn/nilearn` condition
Expand Down