Skip to content

build(deps): bump k8s.io/apimachinery from 0.25.3 to 0.28.4 #273

build(deps): bump k8s.io/apimachinery from 0.25.3 to 0.28.4

build(deps): bump k8s.io/apimachinery from 0.25.3 to 0.28.4 #273

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: '1.19'
permissions:
actions: none
checks: none
contents: none
deployments: none
id-token: none
issues: none
discussions: none
packages: none
pull-requests: none
repository-projects: none
security-events: none
statuses: none
jobs:
analyze:
permissions:
# write security-events is required by all codeql-action workflows
security-events: write
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: github/codeql-action/init@cc7986c02bac29104a72998e67239bb5ee2ee110
with:
languages: go
- uses: github/codeql-action/autobuild@cc7986c02bac29104a72998e67239bb5ee2ee110
- uses: github/codeql-action/analyze@cc7986c02bac29104a72998e67239bb5ee2ee110
coverage:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@c4a742cab115ed795e34d4513e2cf7d472deb55f
with:
go-version: ${{ env.GO_VERSION }}
- name: Install dependencies
run: |
sudo apt update
sudo apt install -y libseccomp-dev libelf-dev libapparmor-dev
sudo hack/install-libbpf.sh
- run: make test-unit
- uses: codecov/codecov-action@d9f34f8cd5cb3b3eb79b3e4b5dae3a16df499a70
with:
files: build/coverage.out
flags: unittests
verbose: true
image:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- run: make image
- run: podman save -o image.tar security-profiles-operator
- uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8
with:
name: image
path: image.tar
e2e-fedora:
needs: image
runs-on: macos-12
timeout-minutes: 90
env:
RUN: ./hack/ci/run-fedora.sh
steps:
- uses: actions/checkout@v3
- uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
with:
path: |
~/.vagrant.d/boxes
key: e2e-fedora-${{ hashFiles('hack/ci/Vagrantfile-fedora') }}
- uses: actions/download-artifact@9782bd6a9848b53b110e712e20e42d89988822b7
with:
name: image
path: .
- name: Boot Virtual Machine
run: make vagrant-up-fedora
- name: Show environment information
run: |
$RUN kubectl wait --for=condition=ready --timeout=60s node 127.0.0.1
$RUN kubectl get nodes -o wide
- name: Set up git config
run: |
$RUN git config --global --add safe.directory /vagrant
- name: Run E2E tests
run: $RUN hack/ci/e2e-fedora.sh
- name: Run Flaky E2E tests
continue-on-error: true
run: |
$RUN "echo \"export E2E_TEST_FLAKY_TESTS_ONLY=true\" >> /vagrant/hack/ci/env-fedora.sh"
$RUN hack/ci/e2e-fedora.sh
- name: Print generated RBAC rules
run: $RUN hack/ci/print-rbac.sh
e2e-ubuntu:
needs: image
runs-on: macos-12
timeout-minutes: 90
env:
RUN: ./hack/ci/run-ubuntu.sh
steps:
- uses: actions/checkout@v3
- uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
with:
path: |
~/.vagrant.d/boxes
key: e2e-ubuntu-${{ hashFiles('hack/ci/Vagrantfile-ubuntu') }}
- uses: actions/download-artifact@9782bd6a9848b53b110e712e20e42d89988822b7
with:
name: image
path: .
- name: Boot Virtual Machine
run: make vagrant-up-ubuntu
- name: Show environment information
run: |
$RUN kubectl wait --for=condition=ready --timeout=60s node ubuntu2204
$RUN kubectl get nodes -o wide
- name: Set up git config
run: |
$RUN git config --global --add safe.directory /vagrant
- name: Run E2E tests
run: $RUN hack/ci/e2e-ubuntu.sh
- name: Run Flaky E2E tests
continue-on-error: true
run: |
$RUN "echo \"export E2E_TEST_FLAKY_TESTS_ONLY=true\" >> /vagrant/hack/ci/env-ubuntu.sh"
$RUN hack/ci/e2e-ubuntu.sh
e2e-flatcar:
needs: image
runs-on: macos-12
timeout-minutes: 90
env:
RUN: ./hack/ci/run-flatcar.sh
steps:
- uses: actions/checkout@v3
- name: Vagrant box version
id: vagrant-box
run: |
echo "::set-output name=version::$(curl -s https://stable.release.flatcar-linux.net/amd64-usr/current/flatcar_production_vagrant.json | jq '.versions[0].version' | tr -d '".')"
shell: bash
- uses: actions/cache@9b0c1fce7a93df8e3bb8926b0d6e9d89e92f20a7
with:
path: |
~/.vagrant.d/boxes
key: e2e-flatcar-${{ steps.vagrant-box.outputs.version }}-${{ hashFiles('hack/ci/Vagrantfile-flatcar') }}
- name: Upgrade vagrant box
run: |
ln -sf hack/ci/Vagrantfile-flatcar Vagrantfile
vagrant box update
- uses: actions/download-artifact@9782bd6a9848b53b110e712e20e42d89988822b7
with:
name: image
path: .
- name: Boot Virtual Machine
run: make vagrant-up-flatcar
- name: Show environment information
run: |
$RUN kubectl wait --for=condition=ready --timeout=600s node localhost
$RUN kubectl get nodes -o wide
- name: Run E2E tests
run: $RUN hack/ci/e2e-flatcar-dev-container.sh
- name: Run Flaky E2E tests
continue-on-error: true
run: |
$RUN "echo \"export E2E_TEST_FLAKY_TESTS_ONLY=true\" >> /vagrant/hack/ci/env-flatcar.sh"
$RUN hack/ci/e2e-flatcar-dev-container.sh