Skip to content

build(deps): bump k8s.io/component-base from 0.26.3 to 0.27.2 #2013

build(deps): bump k8s.io/component-base from 0.26.3 to 0.27.2

build(deps): bump k8s.io/component-base from 0.26.3 to 0.27.2 #2013

Workflow file for this run

---
# yamllint disable rule:line-length
name: Documentation
on: # yamllint disable-line rule:truthy
push:
branches: ["main", "release-*"]
pull_request:
branches: ["main", "release-*"]
# This workflow must be able to be triggered manually so that it can be
# started from another workflow
workflow_dispatch:
jobs:
build-docs:
name: Build docs
runs-on: ubuntu-20.04
steps:
- name: Checkout source
uses: actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
- name: Install prereqs
run: |
echo 'APT::Acquire::Retries "5";' | sudo tee /etc/apt/apt.conf.d/80-retries
sudo apt-get update
sudo DEBIAN_FRONTEND=noninteractive apt-get install -y python3-pip python3-venv
- name: Build docs
run: |
cd docs
./setup-env.sh
. ../.venv/bin/activate
make html