Refresh CI#561
Merged
Merged
Conversation
Replace scripts with actions. Many of these actions are directly derived from the scripts they replace, so there is no loss in functionality. - `reconcilerio/go-install-action@v1` build go package from source and cache the result. Speeds up rebuilds as the binary is pulled from the cache. - `reconcilerio/install-crane-action@v1` pull crane from the release page if possible, falls back to `reconcilerio/go-install-action` to build if release artifact is not available. - `reconcilerio/kind@v1` starts a kind cluster with the registry defined by `reconcilerio/registry` configured and trusted. The `kubernetes-version` property resolves to node images in the `ghcr.io/reconcilerio/kind/node` repository. Minor versions resolve to the latest patch release, for example `v1.36` -> `v1.36.1`. New kubernetes releases are automatically tracked and built. Signed-off-by: Scott Andrews <scott@andrews.me>
Member
Author
|
Older kind node images are in the queue to be built, the job may need to be retriggered. |
Signed-off-by: Scott Andrews <scott@andrews.me>
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #561 +/- ##
=======================================
Coverage 73.01% 73.01%
=======================================
Files 28 28
Lines 1460 1460
=======================================
Hits 1066 1066
Misses 324 324
Partials 70 70 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
The module changed to `carvel.dev/{tool}`. This also means dependabot
was not fetching new releases.
Signed-off-by: Scott Andrews <scott@andrews.me>
Signed-off-by: Scott Andrews <scott@andrews.me>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Replace scripts with actions. Many of these actions are directly derived from the scripts they replace, so there is no loss in functionality.
reconcilerio/go-install-action@v1build go package from source and cache the result. Speeds up rebuilds as the binary is pulled from the cache.reconcilerio/install-crane-action@v1pull crane from the release page if possible, falls back toreconcilerio/go-install-actionto build if release artifact is not available.reconcilerio/kind@v1starts a kind cluster with the registry defined byreconcilerio/registryconfigured and trusted.The
kubernetes-versionproperty resolves to node images in theghcr.io/reconcilerio/kind/noderepository. Minor versions resolve to the latest patch release, for examplev1.36->v1.36.1. New kubernetes releases are automatically tracked and built.