Skip to content

Commit 849a8ea

Browse files
committed
Fix CI
1 parent 174f0f9 commit 849a8ea

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/run-tests.yml

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010

1111
jobs:
1212
test:
13-
runs-on: ubuntu-20.04
13+
runs-on: ubuntu-24.04
1414
container: bigspider/bitcoin_matt
1515
steps:
1616
- name: Prepare Configuration File
@@ -22,9 +22,9 @@ jobs:
2222
bitcoind -regtest --daemon
2323
- name: Set up dependencies
2424
run: |
25-
sudo apt-get update
26-
sudo apt-get install -y libssl-dev libffi-dev
27-
sudo apt-get install -y python3-venv
25+
apt get update
26+
apt get install -y libssl-dev libffi-dev
27+
apt get install -y python3-venv
2828
- name: Set up Python
2929
uses: actions/setup-python@v2
3030
with:
@@ -33,7 +33,6 @@ jobs:
3333
uses: actions/checkout@v4
3434
- name: Install dependencies
3535
run: |
36-
apt-get update
3736
python -m venv venv
3837
source venv/bin/activate
3938
pip install --upgrade pip

0 commit comments

Comments
 (0)