Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: run codeql job on Ubuntu 22.04 and only on supported release branch #968

Merged
merged 2 commits into from
Mar 28, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/build-images-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build-and-push:
if: ${{ github.repository == 'cilium/hubble' }}
environment: release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
# matrix for easier code-sharing with workflows from cilium/cilium
matrix:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
image-digests:
if: ${{ github.repository == 'cilium/hubble' }}
name: Display Digests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: build-and-push
steps:
- name: Getting image tag
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ on:
push:
branches:
- master
- v0.7
- v0.6
- v0.5
- v0.11
pull_request:
branches:
- master
Expand All @@ -21,7 +19,7 @@ concurrency:
jobs:
analyze:
if: github.repository == 'cilium/hubble'
runs-on: ubuntu-18.04
runs-on: ubuntu-22.04
strategy:
fail-fast: false
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ env:

jobs:
integration-test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
timeout-minutes: 20
steps:
- name: Checkout the repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
build:
name: Create Release
if: github.repository == 'cilium/hubble'
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ concurrency:

jobs:
unit-test:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3
- uses: actions/setup-go@4d34df0c2316fe8122ab82dc22947d607c0c91f9
Expand Down