Skip to content

Commit

Permalink
Pin ubuntu version to 22.04 for all github workflows
Browse files Browse the repository at this point in the history
ubuntu-latest might introduce some build issues when a new version
is provided as latests. This gives us more control over the upgrade.

Signed-off-by: Bernd Hufmann <bernd.hufmann@ericsson.com>
  • Loading branch information
bhufmann committed Oct 11, 2024
1 parent 7d8c932 commit d6fc6a4
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
node-version: [18]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
node-version: [18]

steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/license-check-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
os: [ubuntu-22.04]
node: [18]
java: [11]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
gh-release:
name: GitHub release
if: github.repository == 'eclipse-cdt-cloud/theia-trace-extension'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit d6fc6a4

Please sign in to comment.