Skip to content
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 dependencies in gh-action.md examples #3249

Merged
merged 2 commits into from
Oct 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions website/docs/cookbooks/introduction/gh-action.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: coursier/cache-action@v6.3
- uses: VirtusLab/scala-cli-setup@v0.1
- uses: coursier/cache-action@v6.4
- uses: VirtusLab/scala-cli-setup@v1.5
- run: scala-cli test .
```

Expand All @@ -79,11 +79,11 @@ To check your code format in GitHub CI by adding new job `format`:
format:
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6.3
- uses: VirtusLab/scala-cli-setup@v0.1
- uses: coursier/cache-action@v6.4
- uses: VirtusLab/scala-cli-setup@v1.5
- name: Scalafmt check
run: |
scala-cli fmt --check . || (
Expand Down Expand Up @@ -151,4 +151,4 @@ When release CI pass, you should be able to download artifacts that contain nati

[Here](https://github.com/lwronski/ls-scala-cli-demo/actions/runs/2376334882) you can find examples of a CI that contains generated launcher based on this cookbook.

You can find the code of this cookbook [here](https://github.com/lwronski/ls-scala-cli-demo).
You can find the code of this cookbook [here](https://github.com/lwronski/ls-scala-cli-demo).
Loading