Skip to content

Bump docker/docker and k8s.io/kubernetes packages #126

Bump docker/docker and k8s.io/kubernetes packages

Bump docker/docker and k8s.io/kubernetes packages #126

Workflow file for this run

name: PR
on:
pull_request:
types: ['opened', 'reopened', 'synchronize']
branches: [ "master", release/* ]
paths:
- '**' # all files otherwise excludes wont work
- '!**/**/*.md' # ignore markdown files
jobs:
vet:
uses: ./.github/workflows/vet.yml
unit-test:
uses: ./.github/workflows/unit.yml
build:
uses: ./.github/workflows/build.yml
e2e:
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [build, vet, unit-test]
uses: ./.github/workflows/e2e.yml
integration:
if: ${{ always() && contains(join(needs.*.result, ','), 'success') }}
needs: [build, vet, unit-test]
uses: ./.github/workflows/integration.yml