Skip to content

Commit d15bb37

Browse files
authored
Update actions (#87)
1 parent fbf02a2 commit d15bb37

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ jobs:
2323
shell: bash -el {0}
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727
with:
2828
fetch-depth: 0
2929
- uses: coursier/cache-action@v6
30-
- uses: actions/setup-java@v3
30+
- uses: actions/setup-java@v4
3131
with:
3232
distribution: ${{ matrix.distribution }}
3333
java-version: ${{ matrix.java }}
@@ -46,7 +46,7 @@ jobs:
4646
4747
- name: Cache Conda env
4848
id: conda-cache
49-
uses: actions/cache@v3
49+
uses: actions/cache@v4
5050
with:
5151
path: ${{ steps.cache-config.outputs.path }}
5252
key:
@@ -67,7 +67,7 @@ jobs:
6767
- name: Build project
6868
run: sbt +test
6969

70-
- uses: actions/upload-artifact@v3
70+
- uses: actions/upload-artifact@v4
7171
if: ${{ startsWith(matrix.os, 'macos') }}
7272
with:
7373
name: macos
@@ -91,11 +91,11 @@ jobs:
9191
CI_CLEAN: ""
9292

9393
steps:
94-
- uses: actions/checkout@v3
94+
- uses: actions/checkout@v4
9595
with:
9696
fetch-depth: 0
9797
- uses: coursier/cache-action@v6
98-
- uses: actions/setup-java@v3
98+
- uses: actions/setup-java@v4
9999
with:
100100
distribution: ${{ matrix.distribution }}
101101
java-version: ${{ matrix.java }}
@@ -114,7 +114,7 @@ jobs:
114114
115115
- name: Cache Conda env
116116
id: conda-cache
117-
uses: actions/cache@v3
117+
uses: actions/cache@v4
118118
with:
119119
path: ${{ steps.cache-config.outputs.path }}
120120
key:
@@ -129,7 +129,7 @@ jobs:
129129
- name: Set LD_LIBRARY_PATH
130130
run: echo "LD_LIBRARY_PATH=$CONDA/envs/pdal-java/lib:/usr/local/lib:$LD_LIBRARY_PATH" >> "$GITHUB_ENV"
131131

132-
- uses: actions/download-artifact@v3
132+
- uses: actions/download-artifact@v4
133133
with:
134134
name: macos
135135
path: native/target/native/x86_64-darwin/bin

.github/workflows/release-drafter.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ jobs:
1111
update_release_draft:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: release-drafter/release-drafter@v5.15.0
14+
- uses: release-drafter/release-drafter@v6.0.0
1515
env:
1616
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)