Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency ubuntu to v24 #2064

Merged
merged 1 commit into from
Sep 27, 2024
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
# run: exit ${{ steps.lychee.outputs.exit_code }}

build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand All @@ -53,7 +53,7 @@ jobs:
run: ./gradlew build -x :smoke-tests:test --scan --no-daemon

setup-muzzle-matrix:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand All @@ -77,7 +77,7 @@ jobs:

muzzle:
needs: setup-muzzle-matrix
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix: ${{fromJson(needs.setup-muzzle-matrix.outputs.matrix)}}
fail-fast: false
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
run: ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.suite }} --scan --no-daemon

shellcheck:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand All @@ -27,7 +27,7 @@ jobs:
run: ./gradlew build -x :smoke-tests:test --scan --no-daemon

setup-muzzle-matrix:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand All @@ -51,7 +51,7 @@ jobs:

muzzle:
needs: setup-muzzle-matrix
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix: ${{fromJson(needs.setup-muzzle-matrix.outputs.matrix)}}
fail-fast: false
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
issue:
name: Open issue on failure
needs: [ build, muzzle, smoke-test ]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
issues: write
if: always()
Expand Down Expand Up @@ -157,7 +157,7 @@ jobs:
--body-file body.txt

shellcheck:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
# run: exit ${{ steps.lychee.outputs.exit_code }}

build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand All @@ -49,7 +49,7 @@ jobs:
run: ./gradlew build -x :smoke-tests:test --scan --no-daemon

setup-muzzle-matrix:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
Expand All @@ -73,7 +73,7 @@ jobs:

muzzle:
needs: setup-muzzle-matrix
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix: ${{fromJson(needs.setup-muzzle-matrix.outputs.matrix)}}
fail-fast: false
Expand Down Expand Up @@ -150,7 +150,7 @@ jobs:
run: ./gradlew :smoke-tests:test -PsmokeTestSuite=${{ matrix.suite }} --scan --no-daemon

shellcheck:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand All @@ -161,7 +161,7 @@ jobs:
run: shellcheck-v0.8.0/shellcheck --format=gcc $(find scripts -name '*.sh')

license-check:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand Down Expand Up @@ -198,7 +198,7 @@ jobs:
fi

generate-metadata:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
steps:
- uses: actions/[email protected]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-docker-image-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
permissions:
packages: write
contents: read
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-profiling-petclinic-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: workflow_dispatch
jobs:
push_to_registry_linux:
name: publish custom linux spring-petclinic base image for profiling
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
strategy:
matrix:
jdk_version: [8, 11, 17]
Expand Down