Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu_x64_8_cores
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand All @@ -23,7 +23,7 @@ jobs:
# Because actions/upload-artifact will refuse to upload relative paths...
mv ../*.deb .

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: Packages
path: '*.deb'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v6

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: ~/.opam
key: ${{ matrix.os }}-opam-${{ matrix.ocaml-version }}-1
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
strip magic-trace
upx -9 magic-trace

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v6
with:
name: magic-trace
path: magic-trace
Expand Down