Skip to content

Commit 44cd776

Browse files
chore(release): bump nodebuilder to 2.2.0 (#2484)
1 parent f880cb3 commit 44cd776

17 files changed

+20
-20
lines changed

.github/workflows/push_release_images.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
uses: docker/setup-buildx-action@v3
5454
- name: Set container image tags
5555
# Set the tags for the {container}-{version} and {container}
56-
# For example: ':alpine-v2.1.0' and ':alpine'
56+
# For example: ':alpine-v2.2.0' and ':alpine'
5757
run: |
5858
TAGS="${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}-${{ env.NODEBUILDER_VERSION }}"
5959
TAGS="${TAGS},${{ env.DOCKERHUB_REPO }}:${{ matrix.container }}"
@@ -105,7 +105,7 @@ jobs:
105105
# Push if the CI run isn't from a beta prerelease
106106
push: ${{ !github.event.release.prerelease }}
107107
# Set the tags for the ubuntu-{version}, ubuntu, {version}, and latest
108-
# For example, ':ubuntu-v2.1.0', ':ubuntu', ':v2.1.0', and ':latest'
108+
# For example, ':ubuntu-v2.2.0', ':ubuntu', ':v2.2.0', and ':latest'
109109
tags: |
110110
${{ env.DOCKERHUB_REPO }}:${{ env.DEFAULT_IMAGE }}-${{ needs.build-and-push.outputs.nodebuilder-version }}
111111
${{ 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/v2.1.0/nodebuilder)"
8+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v2.2.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/v2.1.0/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/v2.1.0/nodebuilder)"
44+
sh -c "$(curl -fsSL https://github.com/bitcoin-tools/nodebuilder/raw/v2.2.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/v2.1.0/nodebuilder
50+
wget https://github.com/bitcoin-tools/nodebuilder/raw/v2.2.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:59a458b76b4e8896031cd559576eac7d6cb53a69b38ba819fb2651
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.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:4b7ce07002c69e8f3d704a9c5d6fd3053be500b7f1c69fc0d80990
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.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:eb5359d566df2b34cb58be63c2d0fa1476e7654833d4d3af3
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.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:287bf95d97e4f952a94a1f4a83008c6a547405bacc44173bda1
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.0
1111

1212
# Define the nodebuilder URL.
1313
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:d6743b7859c917a488ca39f4ab5e174011305f50b44ce32d3
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.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:0c5ab5380e63cb322552d624d2c78b835f11b526cfd32e1d6f687d
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.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:de7fd18f0c25916f446326d8797abccad2209a1fd298307
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.0
1111

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

docker/Dockerfile_kali

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ FROM kalilinux/kali-last-release@sha256:832a8d68c9c7438e82e654e8dab1a0cf1fc720b0
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=v2.1.0
10+
ARG NODEBUILDER_VERSION=v2.2.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)