Skip to content

chore(deps): Update module k8s.io/apimachinery to v0.18.8 [SECURITY] #441

chore(deps): Update module k8s.io/apimachinery to v0.18.8 [SECURITY]

chore(deps): Update module k8s.io/apimachinery to v0.18.8 [SECURITY] #441

Workflow file for this run

name: Compiling
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
# Compile on all supported OSes
compile:
strategy:
matrix:
go-version:
- 1.14.x
platform:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Add GOBIN to PATH
run: echo "$(go env GOPATH)/bin" >> $GITHUB_PATH
shell: bash
- name: Checkout code
uses: actions/checkout@v2
- name: Compile
run: make compile-only