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

chore(deps): update dependency ubuntu to v22 (main) #1793

Merged
merged 1 commit into from
Nov 24, 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
6 changes: 3 additions & 3 deletions .github/workflows/build-clang-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:
jobs:
build-preview:
if: github.event_name == 'pull_request'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
# https://github.com/docker/setup-qemu-action
- name: Set up QEMU
Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:

build-and-push:
if: github.event_name == 'push'
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
environment: release-clang
permissions:
# To be able to access the repository with `actions/checkout`
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
if: github.event_name == 'push' && github.repository == 'cilium/tetragon'
needs: build-and-push
name: Display Digests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Downloading Image Digests
shell: bash
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-images-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ permissions:

jobs:
build-and-push-prs:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
include:
Expand Down Expand Up @@ -223,7 +223,7 @@ jobs:
image-digests:
if: ${{ always() }}
name: Display Digests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: [build-and-push-prs]
steps:
- name: Downloading Image Digests
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-images-releases.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ permissions:
jobs:
build-and-push:
environment: release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
strategy:
matrix:
include:
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
image-digests:
if: ${{ github.repository == 'cilium/tetragon' }}
name: Display Digests
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
needs: build-and-push
steps:
- name: Downloading Image Digests
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:
name: Create Release
if: github.repository == 'cilium/tetragon'
environment: release
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- name: Checkout code
uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint-codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
check_changes:
name: Deduce required tests from code changes
if: ${{ github.event_name == 'pull_request' }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
outputs:
go-changes: ${{ steps.go-changes.outputs.src }}
steps:
Expand All @@ -45,7 +45,7 @@ jobs:
analyze:
needs: check_changes
if: ${{ needs.check_changes.outputs.go-changes == 'true' || github.event_name != 'pull_request' }}
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
permissions:
security-events: write
steps:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/podinfo-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
- 'docs/**'
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
timeout-minutes: 40
steps:
- name: Checkout code
Expand Down
Loading