Skip to content

Commit 268abc6

Browse files
committed
CI: update uv github action and disable cache
1 parent 71b2f7b commit 268abc6

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ jobs:
7272
python-version: ${{ matrix.python-version }}
7373

7474
- name: Install uv
75-
uses: astral-sh/setup-uv@v6
75+
uses: astral-sh/setup-uv@v7
76+
with:
77+
enable-cache: false
7678

7779
- name: Extract exact python and os version
7880
id: exact_versions

.github/workflows/nightly.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
python-version: ${{ matrix.python-version }}
3030

3131
- name: Install uv
32-
uses: astral-sh/setup-uv@v6
32+
uses: astral-sh/setup-uv@v7
33+
with:
34+
enable-cache: false
3335

3436
- name: Download Bitcoin & install binaries
3537
run: |

backup/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ which makes sure no two instances are using the same backup. (Make sure to stop
3030
your Lightning node before running this command)
3131

3232
```bash
33-
poetry run ./backup-cli init --lightning-dir ~/.lightning/bitcoin file:///mnt/external/location/file.bkp
33+
uv run ./backup-cli init --lightning-dir ~/.lightning/bitcoin file:///mnt/external/location/file.bkp
3434
```
3535

3636
Notes:

backup/pyproject.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ description = "Keep your Core-Lightning node save by backing it up, in real-time
55
authors = [{ name = "Christian Decker", email = "<decker@blockstream.io>" }]
66
requires-python = ">=3.9.2"
77

8+
dependencies = [
9+
"pyln-client>=25.2.2",
10+
"click>=8.0.4",
11+
"psutil>=5.9.4",
12+
"flask>=2.2",
13+
"werkzeug<4",
14+
]
15+
816
[dependency-groups]
917
dev = [
1018
"pyln-testing>=25.2.2",

0 commit comments

Comments
 (0)