Update asdf in CI actions to >=0.16.0. Add actions to dependabot update list.#1025
Open
jadrian wants to merge 1 commit into
Open
Update asdf in CI actions to >=0.16.0. Add actions to dependabot update list.#1025jadrian wants to merge 1 commit into
jadrian wants to merge 1 commit into
Conversation
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.
Summary of changes
Asana Ticket: none
Updates
asdf-vm/actions/installto 4.0.1, which is the latest version and also supportsasdf >= 0.16.0. (The actual latest version of asdf, which is always pulled by the install action, is currently 0.19.0.) Also adds dependabot updates of Github actions so that we keep up-to-date.This addresses the following warning in the Credo step of Dev Tasks CI runs:
Before: CI run before clearing asdf cache. In the "ASDF" job, the "ASDF cache" step shows a cache hit, so it skips installing asdf. Then in the "Dev Tasks" job, the "Credo" step uses the old version of asdf, and therefore shows the warning.
After: CI run after clearing asdf cache. In the "ASDF" job, the "ASDF cache" step has a cache miss, so the "Run asdf-vm/actions/install" step runs and installs the latest version of asdf. Then in the "Dev Tasks" job, the "Credo" step uses the new version of asdf, and we don't get the warning.