Skip to content

Commit b4fee40

Browse files
Atishyy27joostjager
authored andcommitted
ci: fix OOM in artifact upload and update actions to v4
1 parent dcf0c20 commit b4fee40

4 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
issues: write
1212
checks: write
1313
steps:
14-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1515
- uses: rustsec/audit-check@v1.4.1
1616
with:
1717
token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/build.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -250,6 +250,7 @@ jobs:
250250
with:
251251
name: hfuzz-corpus
252252
path: fuzz/hfuzz_workspace
253+
compression-level: 0
253254

254255
linting:
255256
runs-on: ubuntu-latest

.github/workflows/ldk-node-integration.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212

1313
steps:
1414
- name: Checkout code
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616
with:
1717
path: rust-lightning
1818
- name: Checkout LDK Node
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020
with:
2121
repository: lightningdevkit/ldk-node
2222
path: ldk-node

.github/workflows/semver.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ jobs:
1313
steps:
1414
- name: Checkout source code
1515
uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
1618
- name: Install Rust stable toolchain
1719
run: |
1820
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable
@@ -23,3 +25,4 @@ jobs:
2325
run: cargo semver-checks
2426
- name: Check SemVer without any non-default features
2527
run: cargo semver-checks --only-explicit-features
28+

0 commit comments

Comments
 (0)