Skip to content

Commit

Permalink
github: workflow: Use ubuntu-24.04 instead of ubuntu-latest
Browse files Browse the repository at this point in the history
Signed-off-by: Matheus Castello <[email protected]>
  • Loading branch information
microhobby committed Jan 16, 2025
1 parent d877f9b commit e169b0e
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-ccpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
ccpp:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev'
name: C/C++ Container
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-debug-ccpp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
ccpp-debug:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev'
name: C/C++ Container Debug
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-debug-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
python3-debug:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev'
name: Python3 Container Debug
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-debug-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
rust-debug:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev'
name: Rust Container Debug
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-publish-torizon-dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3

Expand All @@ -19,4 +19,4 @@ jobs:
run: |
echo "${{ secrets.DOCKER_PASS }}" | docker login -u ${{ secrets.DOCKER_USER }} --password-stdin
cd ./scripts
xonsh ./scripts/build-internal-containers.xsh
xonsh ./build-internal-containers.xsh
2 changes: 1 addition & 1 deletion .github/workflows/build-python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
python3:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev'
name: Python3 Container
strategy:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
rust:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
if: github.ref == 'refs/heads/bookworm' || github.ref == 'refs/heads/dev'
name: Rust Container
strategy:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
spell-check:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: node:18
name: Spell Check
Expand All @@ -21,7 +21,7 @@ jobs:
check-eof-new-line:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
container:
image: torizonextras/torizon-dev:dev
options: --user root
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-torizon-utils.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:

jobs:
publish:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3

Expand Down

0 comments on commit e169b0e

Please sign in to comment.