Skip to content

build(deps): bump k8s.io/apimachinery from 0.34.0-alpha.0 to 0.34.0-alpha.1 #59

build(deps): bump k8s.io/apimachinery from 0.34.0-alpha.0 to 0.34.0-alpha.1

build(deps): bump k8s.io/apimachinery from 0.34.0-alpha.0 to 0.34.0-alpha.1 #59

Workflow file for this run

name: ci
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
with:
submodules: recursive
- name: Extract repository name
id: repo
run: |
echo "repo_name=$(basename "$GITHUB_REPOSITORY")" >> $GITHUB_ENV
- name: Generate Build Version
uses: hashicorp/actions-generate-metadata@f6f1ca9cededa05d841a58d171064faf3de8ec74 #main
id: execute
with:
repositoryOwner: ${{ github.repository_owner }}
repository: ${{ github.repository }}
version: cat VERSION
product: ${{ env.repo_name }}
metadataFileName: ${{ github.workspace }}/build_version.json
- name: Print Build Version
shell: bash
run: cat ${{ github.workspace }}/build_version.json
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5
with:
go-version-file: go.mod
- name: Checkout build (taskfiles) repo
run: |
git clone https://github.com/openkcm/build.git ./hack/common
- name: Install Task
uses: arduino/setup-task@b91d5d2c96a56797b48ac1e0e89220bf64044611 #v2.0.0
with:
version: 3.x
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: task validate
run: task validate --verbose
- name: task test
run: task test --verbose