Skip to content

Commit 2f093ca

Browse files
Merge pull request #111 from opencb/TASK-7693-dev
TASK-7693-dev - Upgrade Ubuntu image on GitHub Actions
2 parents 327f1d7 + 8f7acba commit 2f093ca

12 files changed

+12
-12
lines changed

.github/workflows/build-java-app-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
build-workflow:
2020
name: Build Java app
21-
runs-on: ubuntu-22.04
21+
runs-on: ${{ vars.UBUNTU_VERSION }}
2222
outputs:
2323
version: ${{ steps.get_project_version.outputs.version }}
2424
steps:

.github/workflows/delete-docker-hub-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
delete-docker-hub:
1717
name: Delete Docker Hub image
18-
runs-on: ubuntu-22.04
18+
runs-on: ${{ vars.UBUNTU_VERSION }}
1919
steps:
2020
- uses: docker/login-action@v2
2121
with:

.github/workflows/deploy-docker-hub-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ on:
2525
jobs:
2626
deploy-docker-hub:
2727
name: Push Docker image
28-
runs-on: ubuntu-22.04
28+
runs-on: ${{ vars.UBUNTU_VERSION }}
2929
steps:
3030
- name: "Checkout optional repo"
3131
uses: actions/checkout@v4

.github/workflows/deploy-maven-repository-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
jobs:
1616
deploy-workflow:
1717
name: Deploy to Maven and GitHub Packages
18-
runs-on: ubuntu-22.04
18+
runs-on: ${{ vars.UBUNTU_VERSION }}
1919
steps:
2020
- uses: actions/checkout@v4
2121
with:

.github/workflows/deploy-python-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818
jobs:
1919
pypi:
2020
name: Deploy Python package in PyPI
21-
runs-on: ubuntu-22.04
21+
runs-on: ${{ vars.UBUNTU_VERSION }}
2222
steps:
2323
- uses: actions/download-artifact@v4
2424
if: ${{ inputs.artifact }}

.github/workflows/manual-deploy-maven.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
jobs:
1111
checkout:
1212
name: Build Java app
13-
runs-on: ubuntu-22.04
13+
runs-on: ${{ vars.UBUNTU_VERSION }}
1414
steps:
1515
- uses: actions/checkout@v4
1616
with:

.github/workflows/publish-test-report-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
jobs:
2323
publish-test-report:
2424
name: Publish test report
25-
runs-on: ubuntu-22.04
25+
runs-on: ${{ vars.UBUNTU_VERSION }}
2626
steps:
2727
- uses: actions/download-artifact@v4
2828
with:

.github/workflows/pull-request-approved.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
calculate-xetabase-branch:
1010
if: github.event.review.state == 'approved'
1111
name: Calculate Xetabase branch
12-
runs-on: ubuntu-22.04
12+
runs-on: ${{ vars.UBUNTU_VERSION }}
1313
outputs:
1414
xetabase_branch: ${{ steps.get_xetabase_branch.outputs.xetabase_branch }}
1515
steps:

.github/workflows/release-github-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
jobs:
1414
release-workflow:
1515
name: Create GitHub Release
16-
runs-on: ubuntu-22.04
16+
runs-on: ${{ vars.UBUNTU_VERSION }}
1717
steps:
1818
- uses: actions/download-artifact@v4
1919
if: ${{ inputs.artifact }}

.github/workflows/test-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
jobs:
1010
test:
1111
name: Test and push Sonar analysis
12-
runs-on: ubuntu-22.04
12+
runs-on: ${{ vars.UBUNTU_VERSION }}
1313
steps:
1414
- uses: actions/checkout@v4
1515
with:

0 commit comments

Comments
 (0)