From f961b3b4a7b54476c4f319b13479129b770e2069 Mon Sep 17 00:00:00 2001 From: Victor Payno Date: Thu, 20 Jun 2024 14:34:20 -0700 Subject: [PATCH 1/3] ci(docker-build): update name for llvm-tools rust component --- .github/docker/layer-15.00-exercism-rust.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/docker/layer-15.00-exercism-rust.sh b/.github/docker/layer-15.00-exercism-rust.sh index 0182e0b7..1f4bfc75 100755 --- a/.github/docker/layer-15.00-exercism-rust.sh +++ b/.github/docker/layer-15.00-exercism-rust.sh @@ -62,7 +62,7 @@ main() { declare -a COMPONENTS COMPONENTS=( clippy - llvm-tools-x86_64-unknown-linux-gnu + llvm-tools rustfmt ) From a84d4a88c9b8f5adc40c871178cf0a1fab6e3c82 Mon Sep 17 00:00:00 2001 From: Victor Payno Date: Thu, 20 Jun 2024 14:39:42 -0700 Subject: [PATCH 2/3] ci(docker-build): bump llvm from v16 to v18 for rust >=1.78.0 --- .github/citools/includes/wrapper-library | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/citools/includes/wrapper-library b/.github/citools/includes/wrapper-library index 6159899e..cf438202 100644 --- a/.github/citools/includes/wrapper-library +++ b/.github/citools/includes/wrapper-library @@ -7,7 +7,7 @@ set -o pipefail # shared variables -declare -xr LLVM_VER=16 +declare -xr LLVM_VER=18 if [[ -f /etc/os-release ]]; then . /etc/os-release From df96ff3c4b1f452b2a7e18a36762d7fef6f0c0f5 Mon Sep 17 00:00:00 2001 From: Victor Payno Date: Thu, 20 Jun 2024 17:15:13 -0700 Subject: [PATCH 3/3] ci(docker-build): bump ocker/login-action to v3 --- .github/workflows/docker-build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-build.yml b/.github/workflows/docker-build.yml index 30ec934c..7d721bd1 100644 --- a/.github/workflows/docker-build.yml +++ b/.github/workflows/docker-build.yml @@ -116,7 +116,7 @@ jobs: - name: Docker Build Checkout [${{ matrix.os }} - ${{ matrix.image }}] uses: actions/checkout@v3 - name: Login to Docker Hub [${{ matrix.os }} - ${{ matrix.image }}] - uses: docker/login-action@v2 + uses: docker/login-action@v3 with: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }}