Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: bump CI dependencies #1991

Merged
merged 2 commits into from
Jun 14, 2024
Merged
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/e2e-ios-macmini.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
if: steps.test1.outcome != 'success' && steps.test2.outcome != 'success' && steps.test3.outcome != 'success'
run: yarn e2e:test:ios-release --record-videos all --take-screenshots all --record-logs all --cleanup

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: failure()
# if: ${{ always() }}
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/jest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand All @@ -27,9 +27,9 @@ jobs:
run: wait-for-it -h 127.0.0.1 -p 60001 -t 60

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.17
node-version: 20
cache: 'yarn'

- name: Install Node.js dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lint-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18.17
node-version: 20
cache: 'yarn'

- name: Install Node.js dependencies
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/type-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Set up Node.js
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
cache: 'yarn'

- name: Install Node.js dependencies
Expand Down
10 changes: 5 additions & 5 deletions docker/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
services:
bitcoind:
container_name: bitcoin
image: btcpayserver/bitcoin:25.1
image: btcpayserver/bitcoin:26.0
restart: unless-stopped
expose:
- '43782'
Expand Down Expand Up @@ -30,7 +30,7 @@ services:
zmqpubhashblock=tcp://0.0.0.0:28336

bitcoinsetup:
image: btcpayserver/bitcoin:25.1
image: btcpayserver/bitcoin:26.0
depends_on:
- bitcoind
restart: 'no'
Expand All @@ -47,7 +47,7 @@ services:

electrs:
container_name: electrum
image: getumbrel/electrs:v0.9.10
image: getumbrel/electrs:v0.10.2
restart: unless-stopped
depends_on:
- bitcoind
Expand All @@ -71,7 +71,7 @@ services:
- ELECTRS_LOG_FILTERS=INFO

darkhttpd:
image: p3terx/darkhttpd:1.14
image: p3terx/darkhttpd:1.16
restart: unless-stopped
depends_on:
- bitcoinsetup
Expand All @@ -86,7 +86,7 @@ services:

lnd:
container_name: lnd
image: polarlightning/lnd:0.17.5-beta
image: polarlightning/lnd:0.18.0-beta
restart: unless-stopped
depends_on:
- bitcoind
Expand Down
Loading