Skip to content
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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ on:
schedule:
- cron: "15 2 * * *" # Nightly-Build at 2:15 AM UTC

# The CI runs on ubuntu-20.04; More info about the installed software is found here:
# The CI runs on ubuntu-22.04; More info about the installed software is found here:
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-Readme.md

env:
Expand All @@ -30,7 +30,7 @@ jobs:
# It also ensures that we pull from an external source to install nvm only once, instead of x number of hooks + y number of scanners
nvm-setup:
name: "Configuration"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3

Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:

unit-java:
name: "Unit-Test | Java"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
unit: ["persistence-defectdojo"]
Expand All @@ -79,7 +79,7 @@ jobs:

operator:
name: "Build | Operator"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
component: ["operator", "lurker"]
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:

auto-discovery-kubernetes:
name: "AutoDiscovery | Kubernetes"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
# ---- Build Stage | AutoDiscovery | PullSecretExtractor ----
auto-discovery-kubernetes-secret-extraction-container:
name: "Autodiscovery | Kubernetes | SecretExtractionInitContainer"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: nvm-setup
steps:
- name: Checkout
Expand Down Expand Up @@ -217,7 +217,7 @@ jobs:

sdk:
name: "Build | SDKs"
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
sdk:
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
- sdk
- operator
- nvm-setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -408,7 +408,7 @@ jobs:
- sdk
- operator
- nvm-setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -556,7 +556,7 @@ jobs:
needs:
- operator
- nvm-setup
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
hook:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/label-commenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ permissions:

jobs:
comment:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Label Commenter
Expand Down