Skip to content

Commit

Permalink
revert ubuntu version to 22.04
Browse files Browse the repository at this point in the history
  • Loading branch information
Topin2001 committed May 2, 2024
1 parent f035cb2 commit ae99bba
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
# Job to test if a new version is ready to be released
deliverability:
name: Check if a new version must be released
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
# The job is run only if the CI workflow succeeded
if: github.event.workflow_run.conclusion == 'success'
outputs:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
release:
name: Release a new version of the docker image
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
needs: deliverability
if: needs.deliverability.outputs.delivery == 'allowed'
steps:
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:

push_to_registry:
name: Push Docker image to Docker Hub
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
needs: deliverability
if: needs.deliverability.outputs.delivery == 'allowed'
steps:
Expand Down Expand Up @@ -189,7 +189,7 @@ jobs:

close_milestone:
name: Close the milestone
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
needs:
- deliverability
- release
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
# Job that builds the image and upload it as an artifact
build:
name: Build the docker image
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- name: Build docker image
Expand All @@ -46,7 +46,7 @@ jobs:
# Jobs that test the image and the embedded tools
test:
name: Test the Docker image
runs-on: ubuntu-24.04
runs-on: ubuntu-22.04
needs: build
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit ae99bba

Please sign in to comment.