Skip to content

chore(deps): bump k8s.io/apimachinery from 0.27.4 to 0.28.3 #177

chore(deps): bump k8s.io/apimachinery from 0.27.4 to 0.28.3

chore(deps): bump k8s.io/apimachinery from 0.27.4 to 0.28.3 #177

Workflow file for this run

---
name: ci
on:
push:
branches: [ main ]
tags: [ v* ]
pull_request:
branches: [ main ]
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: golangci-lint
uses: golangci/golangci-lint-action@v2
with:
version: latest
# test:
# name: test
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-go@v2
# with:
# go-version: '^1.16'
# - uses: RyanSiu1995/kubebuilder-action@v1.2.1
# - run: make test
# - uses: codecov/codecov-action@v1
# with:
# files: coverage.out
docker:
name: docker
runs-on: ubuntu-latest
needs:
- lint
# - test
steps:
- uses: actions/checkout@v2
- uses: docker/setup-qemu-action@v1
- uses: docker/setup-buildx-action@v1
- uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/metadata-action@v3
id: meta
with:
images: ghcr.io/${{ github.repository }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- uses: docker/build-push-action@v2
with:
file: "Dockerfile"
context: .
platforms: linux/amd64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}