fix(deps): update kubernetes packages to v0.35.0 #2305
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Publish Docker Image | |
| on: | |
| push: | |
| release: | |
| types: ["published"] | |
| jobs: | |
| publish-container-image: | |
| permissions: | |
| id-token: write | |
| contents: read | |
| packages: write | |
| attestations: write | |
| uses: datum-cloud/actions/.github/workflows/publish-docker.yaml@v1.8.1 | |
| with: | |
| image-name: milo | |
| secrets: inherit | |
| publish-kustomize-bundles: | |
| # Add explicit dependency so that the kustomize bundles only get published | |
| # if the container image has been built successfully. This helps prevent | |
| # situations where the deployment manifests are picked up by flux but the | |
| # container is still being created. | |
| needs: [publish-container-image] | |
| permissions: | |
| id-token: write | |
| contents: read | |
| packages: write | |
| uses: datum-cloud/actions/.github/workflows/publish-kustomize-bundle.yaml@v1.8.1 | |
| with: | |
| bundle-name: ghcr.io/datum-cloud/milo-kustomize | |
| bundle-path: config | |
| image-overlays: config/apiserver,config/controller-manager/base | |
| image-name: ghcr.io/datum-cloud/milo | |
| secrets: inherit |