Skip to content

Commit 6f5cd09

Browse files
chore(release): bump nodebuilder to v1.10.0 (#1605)
1 parent 63dfd19 commit 6f5cd09

19 files changed

+25
-29
lines changed

.github/workflows/push_release_images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
uses: docker/setup-buildx-action@v3
5555
- name: Set container image tags
5656
# Set the tags for the {container}-{version} and {container}
57-
# For example: ':alpine-v1.9.1' and ':alpine'
57+
# For example: ':alpine-v1.10.0' and ':alpine'
5858
run: |
5959
TAGS="${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}-${{ env.NODEBUILDER_VERSION }}"
6060
TAGS="${TAGS},${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}"
@@ -102,7 +102,7 @@ jobs:
102102
# Push if the CI run isn't from a beta prerelease
103103
push: ${{ !github.event.release.prerelease }}
104104
# Set the tags for the ubuntu-{version}, ubuntu, {version}, and latest
105-
# For example, ':ubuntu-v1.9.1', ':ubuntu', ':v1.9.1', and ':latest'
105+
# For example, ':ubuntu-v1.10.0', ':ubuntu', ':v1.10.0', and ':latest'
106106
tags: |
107107
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}-${{ needs.build-and-push.outputs.nodebuilder-version }}
108108
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Run a secure Bitcoin Core node with ease.
55
Copy-paste the following command into Terminal:
66

77
```sh
8-
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.9.1/nodebuilder)"
8+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.10.0/nodebuilder)"
99
```
1010

1111
[![Supports: Docker](https://img.shields.io/badge/supports-Docker-blue.svg?logo=docker)](https://docs.docker.com)
@@ -41,13 +41,13 @@ sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.9.1/node
4141
As mentioned above, start the script from the command line. Open Terminal and run:
4242

4343
```sh
44-
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.9.1/nodebuilder)"
44+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.10.0/nodebuilder)"
4545
```
4646

4747
Or download the script to your local system, set permissions, and run it:
4848

4949
```sh
50-
wget https://github.com/bitcoin-tools/nodebuilder/raw/v1.9.1/nodebuilder
50+
wget https://github.com/bitcoin-tools/nodebuilder/raw/v1.10.0/nodebuilder
5151
chmod u+x nodebuilder
5252
./nodebuilder
5353
```

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM ubuntu:latest@sha256:b359f1067efa76f37863778f7b6d0e8d911e3ee8efa807ad01fbf5
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.9.1
10+
ARG NODEBUILDER_VERSION=v1.10.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_alpine

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM alpine:latest@sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367eff
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.9.1
10+
ARG NODEBUILDER_VERSION=v1.10.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_amazonlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM amazonlinux:latest@sha256:5fe11d17e56571a26e20df3fa1493bdf9139fb9f2cb6d84fa
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.9.1
10+
ARG NODEBUILDER_VERSION=v1.10.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_archlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM archlinux:latest@sha256:c8501ab8b970205491501ba01d9bce9a04d70537fc15596360f
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.9.1
10+
ARG NODEBUILDER_VERSION=v1.10.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_clearlinux

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM clearlinux:latest@sha256:8b8051d7c014c29bd035e60d32b57c217c105a0fb08a372808
66
ENV TERM=xterm
77

88
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
9-
ARG NODEBUILDER_VERSION=v1.9.1
9+
ARG NODEBUILDER_VERSION=v1.10.0
1010

1111
# Define the nodebuilder URL.
1212
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_debian

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM debian:stable-slim@sha256:939e69ef5aa4dc178893a718ea567f1ca390df60793fd08c0
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.9.1
10+
ARG NODEBUILDER_VERSION=v1.10.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_fedora

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM fedora:latest@sha256:d0207dbb078ee261852590b9a8f1ab1f8320547be79a2f39af9f3d
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.9.1
10+
ARG NODEBUILDER_VERSION=v1.10.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

docker/Dockerfile_gentoo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM gentoo/stage3:latest@sha256:02eb0e73fb87faa5fa2e2640bddcd30c78d504588d07645
77
ENV TERM=xterm
88

99
# Define the default version of nodebuilder or pass in a different version (eg master) as an argument.
10-
ARG NODEBUILDER_VERSION=v1.9.1
10+
ARG NODEBUILDER_VERSION=v1.10.0
1111

1212
# Define the nodebuilder URL.
1313
ARG NODEBUILDER_URL=https://github.com/bitcoin-tools/nodebuilder/raw/${NODEBUILDER_VERSION}/nodebuilder

0 commit comments

Comments
 (0)