Skip to content

build(deps): Bump k8s.io/client-go from 0.31.0 to 0.31.1 #1198

build(deps): Bump k8s.io/client-go from 0.31.0 to 0.31.1

build(deps): Bump k8s.io/client-go from 0.31.0 to 0.31.1 #1198

Workflow file for this run

name: pre-commit
on:
pull_request:
push:
branches: [master]
jobs:
pre-commit:
runs-on: ubuntu-latest
# don't run this on the master branch
if: github.ref != 'refs/heads/master'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5.2.0
with:
python-version: '3.x'
- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
cache: true
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install -y libdevmapper-dev libbtrfs-dev
- uses: pre-commit/action@v3.0.1
with:
token: ${{ secrets.GITHUB_TOKEN }}