Skip to content

fix(deps): update kubernetes packages to v0.28.1 #681

fix(deps): update kubernetes packages to v0.28.1

fix(deps): update kubernetes packages to v0.28.1 #681

name: Build Artifacts
on:
push:
branches: [main]
pull_request:
jobs:
build_artifacts:
runs-on: ubuntu-latest
timeout-minutes: 20
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: 1.20.x
- name: Setup Acccess to private Repos
run: git config --global url."https://golang:${ACCESS_TOKEN}@github.com".insteadOf "https://github.com"
env:
ACCESS_TOKEN: ${{ secrets.ORGANIZATION_GITHUB_ACCESS_TOKEN }}
- name: Cache Go Module & Build Cache
uses: actions/cache@v3
with:
path: |
~/go/pkg/mod
~/.cache/go-build
~/Library/Caches/go-build
%LocalAppData%\go-build
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v4
with:
version: latest
args: release --rm-dist --snapshot --skip-publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run Trivy vulnerability scanner for built image
uses: aquasecurity/[email protected]
with:
image-ref: youniqx/heist:latest
exit-code: '1'