Skip to content

Commit

Permalink
chore(cd): run CD in ubuntu-24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
fffonion committed Nov 28, 2024
1 parent ef762bb commit 98563fd
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ env:
jobs:
metadata:
name: Metadata
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
outputs:
kong-version: ${{ steps.build-info.outputs.kong-version }}
prerelease-docker-repository: ${{ env.PRERELEASE_DOCKER_REPOSITORY }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
matrix:
include: "${{ fromJSON(needs.metadata.outputs.matrix)['build-packages'] }}"

runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
container:
image: ${{ matrix.image }}
options: --privileged
Expand Down Expand Up @@ -272,7 +272,7 @@ jobs:
verify-manifest-packages:
needs: [metadata, build-packages]
name: Verify Manifest - Package ${{ matrix.label }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

strategy:
fail-fast: false
Expand Down Expand Up @@ -304,7 +304,7 @@ jobs:
build-images:
name: Build Images - ${{ matrix.label }}
needs: [metadata, build-packages]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

permissions:
# create comments on commits for docker images needs the `write` permission
Expand Down Expand Up @@ -408,7 +408,7 @@ jobs:
verify-manifest-images:
needs: [metadata, build-images]
name: Verify Manifest - Image ${{ matrix.label }}
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: github.event_name != 'pull_request' || (github.event.pull_request.head.repo.full_name == github.repository && github.actor != 'dependabot[bot]')

strategy:
Expand Down Expand Up @@ -442,7 +442,7 @@ jobs:
scan-images:
name: Scan Images - ${{ matrix.label }}
needs: [metadata, build-images]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
timeout-minutes: ${{ fromJSON(vars.GHA_DEFAULT_TIMEOUT) }}
if: |-
always()
Expand Down Expand Up @@ -510,7 +510,7 @@ jobs:
release-packages:
name: Release Packages - ${{ matrix.label }} - ${{ needs.metadata.outputs.release-desc }}
needs: [metadata, build-packages, build-images]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: fromJSON(needs.metadata.outputs.matrix)['release-packages'] != ''
timeout-minutes: 5 # PULP takes a while to publish
environment: release
Expand Down Expand Up @@ -575,7 +575,7 @@ jobs:
release-images:
name: Release Images - ${{ matrix.label }} - ${{ needs.metadata.outputs.release-desc }}
needs: [metadata, build-images]
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04
if: fromJSON(needs.metadata.outputs.matrix)['release-images'] != ''

strategy:
Expand Down

1 comment on commit 98563fd

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Bazel Build

Docker image available kong/kong:98563fdf5e7b2b12bc7f4c1386caaadd2443dbab
Artifacts available https://github.com/Kong/kong/actions/runs/12067340155

Please sign in to comment.