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

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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 @@ -36,7 +36,7 @@ jobs:
docker_build:
needs: [prepare_ci_run]
name: Docker Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.prepare_ci_run.outputs.VERSION }}
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:
helm_chart_build:
needs: [prepare_ci_run, docker_build]
name: Build Helm Charts
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.prepare_ci_run.outputs.VERSION }}
DATETIME: ${{ needs.prepare_ci_run.outputs.DATETIME }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/[email protected]
Expand All @@ -18,7 +18,7 @@ jobs:
docker_build:
needs: [pre-release]
name: Docker Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
helm_chart_build:
needs: [pre-release, docker_build]
name: Build Helm Charts
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.pre-release.outputs.RELEASE_TAG }}
steps:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/[email protected]
Expand All @@ -18,7 +18,7 @@ jobs:
docker_build:
needs: [release]
name: Docker Build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
needs: [release, docker_build]

name: Build Helm Charts
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
env:
VERSION: ${{ needs.release.outputs.RELEASE_TAG }}
steps:
Expand Down
Loading