mirror of
https://github.com/tailscale/tailscale.git
synced 2026-03-29 03:31:22 -04:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.1 to 6.0.2.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](8e8c483db8...de0fac2e45)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 6.0.2
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
32 lines
1.1 KiB
YAML
32 lines
1.1 KiB
YAML
name: "Kubernetes manifests"
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'cmd/k8s-operator/**'
|
|
- 'k8s-operator/**'
|
|
- '.github/workflows/kubemanifests.yaml'
|
|
|
|
# Cancel workflow run if there is a newer push to the same PR for which it is
|
|
# running
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
testchart:
|
|
runs-on: [ ubuntu-latest ]
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
- name: Build and lint Helm chart
|
|
run: |
|
|
eval `./tool/go run ./cmd/mkversion`
|
|
./tool/helm package --app-version="${VERSION_SHORT}" --version=${VERSION_SHORT} './cmd/k8s-operator/deploy/chart'
|
|
./tool/helm lint "tailscale-operator-${VERSION_SHORT}.tgz"
|
|
- name: Verify that static manifests are up to date
|
|
run: |
|
|
make kube-generate-all
|
|
echo
|
|
echo
|
|
git diff --name-only --exit-code || (echo "Generated files for Tailscale Kubernetes operator are out of date. Please run 'make kube-generate-all' and commit the diff."; exit 1)
|