Skip to content

Commit 44a7638

Browse files
chore(release): bump nodebuilder to 1.8.1 (#1439)
1 parent 1b47127 commit 44a7638

19 files changed

+23
-23
lines changed

.github/workflows/push_release_images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
uses: docker/setup-buildx-action@v3
5353
- name: Set container image tags
5454
# Set the tags for the {container}-{version} and {container}
55-
# For example: ':alpine-v1.8.0' and ':alpine'
55+
# For example: ':alpine-v1.8.1' and ':alpine'
5656
run: |
5757
TAGS="${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}-${{ env.NODEBUILDER_VERSION }}"
5858
TAGS="${TAGS},${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}"
@@ -100,7 +100,7 @@ jobs:
100100
# Push if the CI run isn't from a beta prerelease
101101
push: ${{ !github.event.release.prerelease }}
102102
# Set the tags for the ubuntu-{version}, ubuntu, {version}, and latest
103-
# For example, ':ubuntu-v1.8.0', ':ubuntu', ':v1.8.0', and ':latest'
103+
# For example, ':ubuntu-v1.8.1', ':ubuntu', ':v1.8.1', and ':latest'
104104
tags: |
105105
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}-${{ needs.build-and-push.outputs.nodebuilder-version }}
106106
${{ 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.8.0/nodebuilder)"
8+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.1/nodebuilder)"
99
```
1010

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

4242
```sh
43-
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.0/nodebuilder)"
43+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.1/nodebuilder)"
4444
```
4545

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

4848
```sh
49-
wget https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.0/nodebuilder
49+
wget https://github.com/bitcoin-tools/nodebuilder/raw/v1.8.1/nodebuilder
5050
chmod u+x nodebuilder
5151
./nodebuilder
5252
```

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM ubuntu:latest@sha256:8a37d68f4f73ebf3d4efafbcf66379bf3728902a8038616808f04e
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.8.0
10+
ARG NODEBUILDER_VERSION=v1.8.1
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.8.0
10+
ARG NODEBUILDER_VERSION=v1.8.1
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:03b398175f863675186c1a8b38f45d702c5ff0c0faa3a3de9
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.8.0
10+
ARG NODEBUILDER_VERSION=v1.8.1
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:dd8a773cb2aba170c094eecefa0da4256a008aff1c04a8ac9fc
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.8.0
10+
ARG NODEBUILDER_VERSION=v1.8.1
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:139338a813f27293ed5d8a552efc24d90cd10e533b2f79cd27
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.8.0
9+
ARG NODEBUILDER_VERSION=v1.8.1
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:64bc71feaa7ec2ac758a6a3a37c0f0d6ebccf0a45e3f5af1f
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.8.0
10+
ARG NODEBUILDER_VERSION=v1.8.1
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:b7b4b222c2a433e831c006a49a397009640cc30e097824410a35b1
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.8.0
10+
ARG NODEBUILDER_VERSION=v1.8.1
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:b4a39178b2553a2b2abaab3d1736284f1b8c7aff4511106
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.8.0
10+
ARG NODEBUILDER_VERSION=v1.8.1
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)