From 31a7ee69e135170bd689c9c60d70af80a7271dbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Koz=C5=82owski?= Date: Mon, 28 Oct 2024 11:19:02 +0100 Subject: [PATCH] Update dependencies in `gh-action.md` examples (#3249) * Update gh-action.md * Update gh-action.md --- website/docs/cookbooks/introduction/gh-action.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/website/docs/cookbooks/introduction/gh-action.md b/website/docs/cookbooks/introduction/gh-action.md index 749b4b6061..3ebd2b097b 100644 --- a/website/docs/cookbooks/introduction/gh-action.md +++ b/website/docs/cookbooks/introduction/gh-action.md @@ -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 . ``` @@ -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 . || ( @@ -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). \ No newline at end of file +You can find the code of this cookbook [here](https://github.com/lwronski/ls-scala-cli-demo).