Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pomadchin committed Mar 2, 2024
1 parent fbf02a2 commit ec54126
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
shell: bash -el {0}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
Expand All @@ -46,7 +46,7 @@ jobs:
- name: Cache Conda env
id: conda-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.cache-config.outputs.path }}
key:
Expand All @@ -67,7 +67,7 @@ jobs:
- name: Build project
run: sbt +test

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: ${{ startsWith(matrix.os, 'macos') }}
with:
name: macos
Expand All @@ -91,11 +91,11 @@ jobs:
CI_CLEAN: ""

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: coursier/cache-action@v6
- uses: actions/setup-java@v3
- uses: actions/setup-java@v4
with:
distribution: ${{ matrix.distribution }}
java-version: ${{ matrix.java }}
Expand All @@ -114,7 +114,7 @@ jobs:
- name: Cache Conda env
id: conda-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.cache-config.outputs.path }}
key:
Expand All @@ -129,7 +129,7 @@ jobs:
- name: Set LD_LIBRARY_PATH
run: echo "LD_LIBRARY_PATH=$CONDA/envs/pdal-java/lib:/usr/local/lib:$LD_LIBRARY_PATH" >> "$GITHUB_ENV"

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: macos
path: native/target/native/x86_64-darwin/bin
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@v5.15.0
- uses: release-drafter/release-drafter@v6.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit ec54126

Please sign in to comment.