diff --git a/.github/workflows/hotfix-builds.yaml b/.github/workflows/hotfix-builds.yaml index c6931e2000..807e3bc334 100644 --- a/.github/workflows/hotfix-builds.yaml +++ b/.github/workflows/hotfix-builds.yaml @@ -39,7 +39,7 @@ jobs: username: ${{ secrets.DOCKER_HUB_USER }} password: ${{ secrets.DOCKER_HUB_TOKEN }} path: ./contrib/dockerfiles/dockerhub - dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu-clang.dockerfile + dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu.dockerfile repository: defi/defichain tags: ${{ env.BUILD_VERSION }} diff --git a/.github/workflows/prune-artifacts.yaml b/.github/workflows/prune-artifacts.yaml index 363595fb09..92f075c6a0 100644 --- a/.github/workflows/prune-artifacts.yaml +++ b/.github/workflows/prune-artifacts.yaml @@ -11,12 +11,12 @@ on: jobs: cleanup: - runs-on: ubuntu-18.04 + runs-on: ubuntu-latest timeout-minutes: 10 steps: - name: Prune artifacts - uses: c-hive/gha-remove-artifacts@24dc23384a1fa6a058b79c73727ae0cb2200ca4c + uses: c-hive/gha-remove-artifacts@v1 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} age: '4 weeks' diff --git a/.github/workflows/release-builds.yaml b/.github/workflows/release-builds.yaml index 30626209ad..04ad8ba93f 100644 --- a/.github/workflows/release-builds.yaml +++ b/.github/workflows/release-builds.yaml @@ -41,7 +41,7 @@ jobs: username: ${{ secrets.DOCKER_HUB_USER }} password: ${{ secrets.DOCKER_HUB_TOKEN }} path: ./contrib/dockerfiles/dockerhub - dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu-clang.dockerfile + dockerfile: ./contrib/dockerfiles/dockerhub/x86_64-pc-linux-gnu.dockerfile repository: defi/defichain tags: latest,${{ env.BUILD_VERSION }} diff --git a/configure.ac b/configure.ac index b55b5ff67f..37a881d302 100644 --- a/configure.ac +++ b/configure.ac @@ -4,7 +4,7 @@ define(_CLIENT_VERSION_MAJOR, 3) define(_CLIENT_VERSION_MINOR, 0) define(_CLIENT_VERSION_REVISION, 0) define(_CLIENT_VERSION_BUILD, 0) -define(_CLIENT_VERSION_RC, 3) +define(_CLIENT_VERSION_RC, 4) define(_CLIENT_VERSION_IS_RELEASE, false) define(_COPYRIGHT_YEAR, 2022) define(_COPYRIGHT_HOLDERS,[The %s developers]) diff --git a/src/version.h b/src/version.h index abfc6e1b7e..9a77ac6e98 100644 --- a/src/version.h +++ b/src/version.h @@ -9,7 +9,7 @@ * network protocol versioning */ -static const int PROTOCOL_VERSION = 70031; +static const int PROTOCOL_VERSION = 70032; //! initial proto version, to be increased after version/verack negotiation static const int INIT_PROTO_VERSION = 209;