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/build-java-app-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
build-workflow:
name: Build Java app
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
outputs:
version: ${{ steps.get_project_version.outputs.version }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-docker-hub-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
delete-docker-hub:
name: Delete Docker Hub image
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- uses: docker/login-action@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docker-hub-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ on:
jobs:
deploy-docker-hub:
name: Push Docker image
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- name: "Checkout optional repo"
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-maven-repository-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
deploy-workflow:
name: Deploy to Maven and GitHub Packages
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-python-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ on:
jobs:
pypi:
name: Deploy Python package in PyPI
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- uses: actions/download-artifact@v4
if: ${{ inputs.artifact }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/manual-deploy-maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
jobs:
checkout:
name: Build Java app
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-test-report-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:
jobs:
publish-test-report:
name: Publish test report
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pull-request-approved.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
calculate-xetabase-branch:
if: github.event.review.state == 'approved'
name: Calculate Xetabase branch
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
outputs:
xetabase_branch: ${{ steps.get_xetabase_branch.outputs.xetabase_branch }}
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-github-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
jobs:
release-workflow:
name: Create GitHub Release
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- uses: actions/download-artifact@v4
if: ${{ inputs.artifact }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
jobs:
test:
name: Test and push Sonar analysis
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-xetabase-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
jobs:
test:
name: Execute JUnit and Jacoco tests
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
steps:
- name: Retrieve secrets from Keeper
id: ksecrets
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/testkeeper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:

jobs:
buildexecutable:
runs-on: ubuntu-22.04
runs-on: ${{ vars.UBUNTU_VERSION }}
name: Build with Keeper secrets
steps:
- name: Retrieve secrets from Keeper
Expand Down
Loading