Skip to content

Updating to Ubuntu 24.04 GHA runners #2239

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

Merged
merged 2 commits into from
Apr 15, 2025
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/build-and-publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
permissions:
contents: 'read'
id-token: 'write'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
permissions:
contents: 'read'
id-token: 'write'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
concurrency:
group: production-deployment
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-to-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
permissions:
contents: 'read'
id-token: 'write'
runs-on: ubuntu-20.04
runs-on: ubuntu-24.04
concurrency:
group: staging-deployment
steps:
Expand Down
3 changes: 2 additions & 1 deletion test/services/differential_expression_service_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,11 @@ class DifferentialExpressionServiceTest < ActiveSupport::TestCase

teardown do
DataArray.find_by(@all_cells_array_params)&.destroy
@basic_study.differential_expression_results.destroy_all
DifferentialExpressionResult.delete_all
StudyFile.where(file_type: 'Differential Expression').delete_all
@basic_study.public = true
@basic_study.save(validate: false) # skip callbacks for performance
@basic_study.reload
end

test 'should validate parameters and launch differential expression job' do
Expand Down
Loading