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-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-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/add-to-project@v1.0.2
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 @@ permissions:
contents: read
jobs:
test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
services:
postgres:
image: postgres:latest
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 @@ -18,7 +18,7 @@ concurrency:
jobs:
reset-release-branch:
name: Update release branch
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
Expand All @@ -33,7 +33,7 @@ jobs:

production-deploy:
name: Deploy to Heroku
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
needs: reset-release-branch
steps:
- uses: actions/checkout@v6
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 @@ -21,7 +21,7 @@ concurrency:
jobs:
deploy:
name: Deploy to Heroku
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
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 @@ -15,7 +15,7 @@ permissions:

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

test:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.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-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
Expand All @@ -35,7 +35,7 @@ jobs:

test-e2e:
name: E2E tests
runs-on: ubuntu-22.04
runs-on: ubuntu-24.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 @@ -12,7 +12,7 @@ on:
jobs:
release:
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
with:
Expand Down
Loading