Skip to content

Commit 384b9ee

Browse files
committed
Update actions
1 parent b181436 commit 384b9ee

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

.github/workflows/ci-fuzz.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
fuzz-seconds: 600
1717
dry-run: false
1818
- name: Upload Crash
19-
uses: actions/upload-artifact@v1
19+
uses: actions/upload-artifact@v4
2020
if: failure()
2121
with:
2222
name: artifacts
23-
path: ./out/artifacts
23+
path: ./out/artifacts

.github/workflows/cmake.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ${{ matrix.os }}
1818
name: ${{ matrix.os }} - shared=${{ matrix.shared }}
1919
steps:
20-
- uses: actions/checkout@v2
20+
- uses: actions/checkout@v4
2121
- name: Build
2222
run: |
2323
mkdir build
@@ -27,7 +27,7 @@ jobs:
2727
run: ctest --test-dir build -V
2828
- name: Upload shared lib
2929
if: matrix.shared == 'ON'
30-
uses: actions/upload-artifact@v2
30+
uses: actions/upload-artifact@v4
3131
with:
3232
name: ${{ matrix.os }}
3333
path: |
@@ -45,7 +45,7 @@ jobs:
4545
run:
4646
shell: msys2 {0}
4747
steps:
48-
- uses: actions/checkout@v2
48+
- uses: actions/checkout@v4
4949
- uses: msys2/setup-msys2@v2
5050
with:
5151
install: gcc make mingw-w64-x86_64-cmake
@@ -58,7 +58,7 @@ jobs:
5858
run: ctest --test-dir build -V
5959
- name: Upload shared lib
6060
if: matrix.shared == 'ON'
61-
uses: actions/upload-artifact@v2
61+
uses: actions/upload-artifact@v4
6262
with:
6363
name: windows-mingw64
6464
path: build/libutf8proc.*

.github/workflows/make.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
runs-on: ${{ matrix.os }}
1717
name: ${{ matrix.os }}
1818
steps:
19-
- uses: actions/checkout@v2
19+
- uses: actions/checkout@v4
2020
# TODO: update makefile to check MANIFEST
2121
- name: Install dependencies (MacOS)
2222
if: runner.os == 'macOS'
@@ -35,7 +35,7 @@ jobs:
3535
- name: Make lib
3636
run: make
3737
- name: Upload shared lib
38-
uses: actions/upload-artifact@v2
38+
uses: actions/upload-artifact@v4
3939
with:
4040
name: make-${{ matrix.os }}
4141
path: libutf8proc.*

0 commit comments

Comments
 (0)