diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 4207d4a..a9a94b5 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,7 +24,7 @@ defaults: jobs: prepare_ci_run: name: Prepare CI Run - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 outputs: GIT_SHA: ${{ steps.extract_branch.outputs.GIT_SHA }} BRANCH: ${{ steps.extract_branch.outputs.BRANCH }} @@ -63,7 +63,7 @@ jobs: build_image: name: Build Docker Image needs: prepare_ci_run - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: BRANCH: ${{ needs.prepare_ci_run.outputs.BRANCH }} DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }} @@ -106,7 +106,7 @@ jobs: name: Upload images to ghcr registry needs: [ prepare_ci_run, build_image ] if: github.event_name == 'push' && needs.prepare_ci_run.outputs.NON_FORKED_AND_NON_ROBOT_RUN == 'true' # only run on push to main/maintenance branches - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 env: DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }} BUILD_TIME: ${{ needs.prepare_ci_run.outputs.BUILD_TIME }} diff --git a/.github/workflows/release-please.yaml b/.github/workflows/release-please.yaml index 1888f18..c3d55b3 100644 --- a/.github/workflows/release-please.yaml +++ b/.github/workflows/release-please.yaml @@ -43,7 +43,7 @@ jobs: if: needs.release-please.outputs.releases_created == 'true' needs: - release-please - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 permissions: contents: write packages: write @@ -114,7 +114,7 @@ jobs: needs: - release-please - build-release - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/semantic-pr.yaml b/.github/workflows/semantic-pr.yaml index 7017cfd..f95a121 100644 --- a/.github/workflows/semantic-pr.yaml +++ b/.github/workflows/semantic-pr.yaml @@ -10,7 +10,7 @@ defaults: shell: bash jobs: validate: - runs-on: ubuntu-22.04 + runs-on: ubuntu-24.04 steps: - name: Validate Pull Request uses: amannn/action-semantic-pull-request@v5.4.0