-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update github workflows #632
Conversation
mzuehlke
commented
Feb 27, 2023
•
edited
Loading
edited
- olafurpg/setup got deprecated in https://github.com/olafurpg/setup-scala/releases/tag/v14
- replaced by actions/setup-java@v3
- enabled sbt caching
- olafurpg/setup-gpg is no longer required since sbt-ci-release v1.5.5
.github/workflows/ci.yml
Outdated
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: olafurpg/setup-scala@v13 | ||
- uses: actions/setup-java@3 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- uses: actions/setup-java@3 | |
- uses: actions/setup-java@v3 |
I think 2 is the latest
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
actions/setup-java@v3
it looks like it needs the v
then 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🤦
2086a22
to
012dfc6
Compare
I forgot to amend my last commit, will you squash them when merging ? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should be able to squash and force push with the changes
* olafurpg/setup got deprecated in v14 * replaced by actions/setup-java@v3 * enabled sbt caching * olafurpg/setup-gpg is no longer required since sbt-ci-release v1.5.5
2d6ccea
to
673c4b9
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks!