Skip to content

Commit

Permalink
Merge pull request #2056 from dandi/ci-ubuntu-22.04
Browse files Browse the repository at this point in the history
Pin ubuntu-22.04 for all CI jobs
  • Loading branch information
waxlamp authored Oct 22, 2024
2 parents 80a6048 + 9ff05dd commit 83379dd
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/auto-add-issues.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
add-to-project:
name: Add issue to project
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/[email protected]
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
- cron: "0 0 * * *"
jobs:
test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/backend-production-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:
jobs:
reset-release-branch:
name: Update release branch
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand All @@ -29,7 +29,7 @@ jobs:
production-deploy:
name: Deploy to Heroku
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: reset-release-branch
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/backend-staging-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ concurrency:
jobs:
deploy:
name: Deploy to Heroku
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cli-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:

jobs:
build-image:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Check out this repository
uses: actions/checkout@v4
Expand All @@ -39,7 +39,7 @@ jobs:
path: dandiarchive-api.tgz

test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
needs: build-image
strategy:
fail-fast: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
defaults:
run:
working-directory: web
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4

Expand All @@ -32,7 +32,7 @@ jobs:
run: yarn run build

test-e2e-puppeteer:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
jobs:
release:
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 83379dd

Please sign in to comment.