From 3ffee365e281c471c27a12f39e5b98e9eb956faf Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Wed, 17 Feb 2021 23:04:09 +0000 Subject: [PATCH] Update rustup in release action (#2206) ## Issue Addressed NA ## Proposed Changes Ensure the arm64 binary is build with the latest version of Rust. --- .github/workflows/release.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cbb2a1053..fdcd5b16c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -30,6 +30,8 @@ jobs: VERSION: ${{ needs.extract-version.outputs.VERSION }} steps: - uses: actions/checkout@v2 + - name: Update Rust + run: rustup update stable - name: Dockerhub login run: | echo "${DOCKER_PASSWORD}" | docker login --username ${DOCKER_USERNAME} --password-stdin