Skip to content
This repository has been archived by the owner on Jan 12, 2024. It is now read-only.

build(deps): update dependency ubuntu to v22 #1025

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
############################################################################
unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/[email protected]
Expand All @@ -44,7 +44,7 @@ jobs:
verify-next-version:
needs: prepare_ci_run
name: Verify next version
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.prepare_ci_run.outputs.VERSION }}
outputs:
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- prepare_ci_run
- verify-next-version
name: Build Helm Charts
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
BRANCH: ${{ needs.prepare_ci_run.outputs.BRANCH }}
VERSION: ${{ needs.verify-next-version.outputs.NEXT-VERSION }}
Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
- verify-next-version
- unit-tests
name: Docker Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
BRANCH: ${{ needs.prepare_ci_run.outputs.BRANCH }}
VERSION: ${{ needs.verify-next-version.outputs.NEXT-VERSION }}
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
needs:
- prepare_ci_run
- verify-next-version
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Create build config file
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-helm-chart.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ env:
jobs:
helm_charts_build:
name: Build Helm Chart
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
BRANCH: ${{ inputs.branch }}
VERSION: ${{ inputs.version }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ defaults:
jobs:
prepare:
name: Prepare release run
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: startsWith(github.ref, 'refs/heads/release-')
outputs:
next-version: ${{ steps.version_number.outputs.next-version }}
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
release-please:
needs:
- prepare
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
name: Release please
if: startsWith(github.ref, 'refs/heads/release-')
outputs:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defaults:
jobs:
prepare:
name: Prepare release run
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: startsWith(github.ref, 'refs/heads/release-')
outputs:
branch: ${{ steps.current_branch.outputs.branch }}
Expand All @@ -37,7 +37,7 @@ jobs:
release-please:
needs:
- prepare
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
name: Release please
if: startsWith(github.ref, 'refs/heads/release-')
outputs:
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
- release-please
name: Build Docker Image
if: ${{ needs.release-please.outputs.release_created }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.release-please.outputs.major }}.${{ needs.release-please.outputs.minor }}.${{ needs.release-please.outputs.patch }}
steps:
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
############################################################################
release:
name: "Release"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs:
- release-please
- docker_build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create_release_draft.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ defaults:
jobs:
prepare-release:
name: "Prepare release"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
BRANCH: ${{ steps.determine_branch.outputs.BRANCH }}
steps:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
publish-draft-release:
name: Publish Draft release
needs: prepare-release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
BRANCH: ${{ needs.prepare-release.outputs.BRANCH }}
REPO_SLUG: "keptn-contrib/dynatrace-service"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defaults:
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/[email protected]
Expand All @@ -29,7 +29,7 @@ jobs:

prepare:
name: Prepare pre-release run
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
next-version: ${{ steps.version_number.outputs.next-version }}
branch: ${{ steps.current_branch.outputs.branch }}
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
docker_build:
needs: prepare
name: Build Docker Image
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.prepare.outputs.next-version }}
steps:
Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
############################################################################
pre-release:
name: "Pre-Release"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [prepare, docker_build, build-helm-chart]
steps:
- name: Checkout repo
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ defaults:
jobs:
unit-tests:
name: Unit Tests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/[email protected]
Expand All @@ -37,7 +37,7 @@ jobs:

prepare:
name: Prepare release run
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
next-version: ${{ steps.version_number.outputs.next-version }}
branch: ${{ steps.current_branch.outputs.branch }}
Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
docker_build:
needs: prepare
name: Build Docker Image
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.prepare.outputs.next-version }}
steps:
Expand Down Expand Up @@ -161,7 +161,7 @@ jobs:
############################################################################
release:
name: "Release"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [prepare, docker_build, build-helm-chart]
steps:
- name: Checkout repo
Expand Down
Loading