Skip to content

Commit 9cfbd5f

Browse files
authored
Merge pull request #250 from synonymdev/bump-ci
2 parents f0379de + 627c527 commit 9cfbd5f

File tree

7 files changed

+23
-27
lines changed

7 files changed

+23
-27
lines changed

.github/workflows/e2e-ios.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Node
2626
uses: actions/setup-node@v4
2727
with:
28-
node-version: 18
28+
node-version: 20
2929
cache: 'yarn' # cache packages, but not node_modules
3030
cache-dependency-path: 'example/yarn.lock'
3131

@@ -67,7 +67,7 @@ jobs:
6767
run: yarn e2e:test:ios-release || yarn e2e:test:ios-release
6868

6969
- uses: actions/upload-artifact@v4
70-
# if: failure()
70+
if: failure()
7171
with:
7272
name: e2e-test-videos
7373
path: ./example/artifacts/

.github/workflows/example-lint-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Check out Git repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Set up Node.js
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: 20
2525

2626
- name: Cache node modules
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
id: npmcache
2929
with:
3030
path: example/node_modules

.github/workflows/lib-lint-check.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ jobs:
1616

1717
steps:
1818
- name: Check out Git repository
19-
uses: actions/checkout@v3
19+
uses: actions/checkout@v4
2020

2121
- name: Set up Node.js
22-
uses: actions/setup-node@v3
22+
uses: actions/setup-node@v4
2323
with:
24-
node-version: 18
24+
node-version: 20
2525

2626
- name: Cache node modules
27-
uses: actions/cache@v3
27+
uses: actions/cache@v4
2828
id: npmcache
2929
with:
3030
path: lib/node_modules

.github/workflows/mocha-android.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
run: yarn build
8989

9090
- name: Use gradle caches
91-
uses: actions/cache@v2
91+
uses: actions/cache@v4
9292
with:
9393
path: ~/.gradle/caches
9494
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}

.github/workflows/mocha-anrdoid.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
22

3+
adb root
34
adb reverse tcp:3003 tcp:3003
45
adb reverse tcp:8090 tcp:8090
56
adb reverse tcp:9090 tcp:9090
@@ -20,7 +21,6 @@ set -e
2021

2122
echo $EXIT_CODE;
2223
if [ $EXIT_CODE -ne 0 ]; then
23-
adb root
2424
sleep 10
2525
adb pull /data/user/0/com.exmpl/files/ldk/ /mnt/artifacts/
2626
fi

.github/workflows/mocha-ios.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
fetch-depth: 1
2424

2525
- name: Setup Docker Colima 1
26-
uses: douglascamata/setup-docker-macos-action@v1-alpha
26+
uses: douglascamata/[email protected]
27+
2728
id: docker1
2829
continue-on-error: true
2930
with:
@@ -32,18 +33,13 @@ jobs:
3233

3334
- name: Setup Docker Colima 2
3435
if: steps.docker1.outcome != 'success'
35-
uses: douglascamata/setup-docker-macos-action@v1-alpha
36+
uses: douglascamata/[email protected]
37+
3638
id: docker2
37-
# continue-on-error: true
3839
with:
3940
lima: v0.18.0
4041
colima: v0.5.6
4142

42-
# - name: Setup Docker Default
43-
# if: steps.docker1.outcome != 'success' && steps.docker2.outcome != 'success'
44-
# uses: docker-practice/[email protected]
45-
# timeout-minutes: 30
46-
4743
- name: Install backup-server dependencies
4844
working-directory: backup-server
4945
run: npm i || npm i

example/docker/docker-compose.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: '3'
22
services:
33
bitcoind:
44
container_name: bitcoin
5-
image: btcpayserver/bitcoin:25.0
5+
image: btcpayserver/bitcoin:26.0
66
restart: unless-stopped
77
expose:
88
- '18443'
@@ -37,7 +37,7 @@ services:
3737
zmqpubhashblock=tcp://0.0.0.0:28336
3838
3939
bitcoinsetup:
40-
image: btcpayserver/bitcoin:25.0
40+
image: btcpayserver/bitcoin:26.0
4141
depends_on:
4242
- bitcoind
4343
restart: 'no'
@@ -54,7 +54,7 @@ services:
5454

5555
electrs:
5656
container_name: electrum
57-
image: getumbrel/electrs:v0.9.10
57+
image: getumbrel/electrs:v0.10.2
5858
restart: unless-stopped
5959
depends_on:
6060
- bitcoind
@@ -73,7 +73,7 @@ services:
7373

7474
lnd:
7575
container_name: lnd
76-
image: polarlightning/lnd:0.17.4-beta
76+
image: polarlightning/lnd:0.18.0-beta
7777
restart: unless-stopped
7878
depends_on:
7979
- bitcoind
@@ -107,7 +107,7 @@ services:
107107

108108
clightning:
109109
container_name: clightning
110-
image: polarlightning/clightning:23.05.2
110+
image: polarlightning/clightning:24.05
111111
restart: unless-stopped
112112
depends_on:
113113
- bitcoind
@@ -143,7 +143,7 @@ services:
143143

144144
eclair:
145145
container_name: eclair
146-
image: polarlightning/eclair:0.9.0
146+
image: polarlightning/eclair:0.10.0
147147
restart: unless-stopped
148148
depends_on:
149149
- bitcoind
@@ -175,7 +175,7 @@ services:
175175

176176
nginx:
177177
container_name: nginx
178-
image: nginx:1.25.1
178+
image: nginx:1.27
179179
restart: unless-stopped
180180
depends_on:
181181
- bitcoinsetup

0 commit comments

Comments
 (0)