Skip to content

Commit 7d82e14

Browse files
authored
Merge pull request #4478 from Atishyy27/fix-ci-oom-error
This PR addresses the out-of-memory (OOM) errors during the artifact upload stage in the CI pipeline.
2 parents 1d0586f + 43066b7 commit 7d82e14

4 files changed

Lines changed: 6 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: 2 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

0 commit comments

Comments
 (0)