From a4968b9698b83c031c716cd32d3833062afa7782 Mon Sep 17 00:00:00 2001 From: github-actions Date: Fri, 9 Feb 2024 08:20:59 +0000 Subject: [PATCH] Add rust v1.76.0 --- .github/workflows/docker-focal.yml | 2 +- .github/workflows/docker-jammy.yml | 2 +- .github/workflows/docker-lunar.yml | 2 +- README.md | 6 +++--- check-for-update/version.txt | 2 +- install.sh | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/docker-focal.yml b/.github/workflows/docker-focal.yml index 09a0b97..3d207a4 100644 --- a/.github/workflows/docker-focal.yml +++ b/.github/workflows/docker-focal.yml @@ -35,7 +35,7 @@ jobs: platforms: linux/amd64,linux/arm64,linux/armhf push: true file: dockerfiles/focal/Dockerfile - tags: devraymondsh/ubuntu-rust:20.04,devraymondsh/ubuntu-rust:20.04-1.75,devraymondsh/ubuntu-rust:20.04-latest,devraymondsh/ubuntu-rust:focal,devraymondsh/ubuntu-rust:focal-1.75,devraymondsh/ubuntu-rust:focal-latest + tags: devraymondsh/ubuntu-rust:20.04,devraymondsh/ubuntu-rust:20.04-1.76,devraymondsh/ubuntu-rust:20.04-latest,devraymondsh/ubuntu-rust:focal,devraymondsh/ubuntu-rust:focal-1.76,devraymondsh/ubuntu-rust:focal-latest - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} diff --git a/.github/workflows/docker-jammy.yml b/.github/workflows/docker-jammy.yml index ad3c59d..595df9b 100644 --- a/.github/workflows/docker-jammy.yml +++ b/.github/workflows/docker-jammy.yml @@ -35,7 +35,7 @@ jobs: platforms: linux/amd64,linux/arm64,linux/armhf push: true file: dockerfiles/jammy/Dockerfile - tags: devraymondsh/ubuntu-rust:22.04,devraymondsh/ubuntu-rust:22.04-1.75,devraymondsh/ubuntu-rust:22.04-latest,devraymondsh/ubuntu-rust:jammy,devraymondsh/ubuntu-rust:jammy-1.75,devraymondsh/ubuntu-rust:jammy-latest + tags: devraymondsh/ubuntu-rust:22.04,devraymondsh/ubuntu-rust:22.04-1.76,devraymondsh/ubuntu-rust:22.04-latest,devraymondsh/ubuntu-rust:jammy,devraymondsh/ubuntu-rust:jammy-1.76,devraymondsh/ubuntu-rust:jammy-latest - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} diff --git a/.github/workflows/docker-lunar.yml b/.github/workflows/docker-lunar.yml index e8f37a6..b5bd70a 100644 --- a/.github/workflows/docker-lunar.yml +++ b/.github/workflows/docker-lunar.yml @@ -35,7 +35,7 @@ jobs: platforms: linux/amd64,linux/arm64,linux/armhf push: true file: dockerfiles/lunar/Dockerfile - tags: devraymondsh/ubuntu-rust:23.04,devraymondsh/ubuntu-rust:23.04-1.75,devraymondsh/ubuntu-rust:23.04-latest,devraymondsh/ubuntu-rust:lunar,devraymondsh/ubuntu-rust:lunar-1.75,devraymondsh/ubuntu-rust:lunar-latest,devraymondsh/ubuntu-rust:1.75,devraymondsh/ubuntu-rust:latest,devraymondsh/ubuntu-rust:latest-1.75 + tags: devraymondsh/ubuntu-rust:23.04,devraymondsh/ubuntu-rust:23.04-1.76,devraymondsh/ubuntu-rust:23.04-latest,devraymondsh/ubuntu-rust:lunar,devraymondsh/ubuntu-rust:lunar-1.76,devraymondsh/ubuntu-rust:lunar-latest,devraymondsh/ubuntu-rust:1.76,devraymondsh/ubuntu-rust:latest,devraymondsh/ubuntu-rust:latest-1.76 - name: Image digest run: echo ${{ steps.docker_build.outputs.digest }} diff --git a/README.md b/README.md index 9d64524..c9d2738 100644 --- a/README.md +++ b/README.md @@ -2,9 +2,9 @@ ## Supported tags: -- 23.04, 23.04-1.75, lunar-1.75, lunar-latest, lunar, 23.04-latest, latest-1.75, 1.75, latest -- 22.04, 22.04-1.75, jammy-1.75, jammy-latest, jammy -- 20.04, 20.04-1.75, focal-1.75, focal-latest, focal +- 23.04, 23.04-1.76, lunar-1.76, lunar-latest, lunar, 23.04-latest, latest-1.76, 1.76, latest +- 22.04, 22.04-1.76, jammy-1.76, jammy-latest, jammy +- 20.04, 20.04-1.76, focal-1.76, focal-latest, focal ## How to use this image diff --git a/check-for-update/version.txt b/check-for-update/version.txt index 7c7053a..32a6ce3 100644 --- a/check-for-update/version.txt +++ b/check-for-update/version.txt @@ -1 +1 @@ -1.75.0 +1.76.0 diff --git a/install.sh b/install.sh index efd5b14..c0df0e1 100644 --- a/install.sh +++ b/install.sh @@ -5,7 +5,7 @@ echo "check_certificate = off" >> ~/.wgetrc apt-get update && apt-get install --yes --no-install-recommends apt-utils ca-certificates && apt-get --yes upgrade && apt-get install --yes --no-install-recommends sudo build-essential wget curl -DEFAULT_RUST_VERSION=1.75.0 +DEFAULT_RUST_VERSION=1.76.0 DEFAULT_RUSTUP_VERSION=1.25.2 RUST_VERSION=${1:-$DEFAULT_RUST_VERSION} RUSTUP_VERSION=${2:-$DEFAULT_RUSTUP_VERSION}