From 6d82a2fee0c49b1f2c1d260b97b0641ae88ad9be Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:02:41 +0100 Subject: [PATCH 1/2] Fix: Docker LegacyKeyValueFormat --- bot/parkertron/Dockerfile | 2 +- bot/sinusbot/Dockerfile | 6 +++--- box64/Dockerfile | 2 +- dotnet/2.1/Dockerfile | 2 +- dotnet/3.1/Dockerfile | 2 +- dotnet/5/Dockerfile | 2 +- dotnet/6/Dockerfile | 2 +- dotnet/7/Dockerfile | 2 +- dotnet/8/Dockerfile | 2 +- dotnet/9/Dockerfile | 2 +- games/altv/Dockerfile | 2 +- games/minetest/Dockerfile | 2 +- games/mta/Dockerfile | 2 +- games/valheim/Dockerfile | 2 +- mariadb/10.3/Dockerfile | 2 +- mariadb/10.4/Dockerfile | 2 +- mariadb/10.5/Dockerfile | 2 +- mariadb/10.6/Dockerfile | 2 +- mariadb/10.7/Dockerfile | 2 +- mariadb/11.2/Dockerfile | 2 +- mariadb/11.3/Dockerfile | 2 +- mariadb/11.4/Dockerfile | 2 +- mongodb/4/Dockerfile | 2 +- mongodb/5/Dockerfile | 2 +- mongodb/6/Dockerfile | 2 +- mongodb/7/Dockerfile | 2 +- oses/debian/Dockerfile | 2 +- postgres/10/Dockerfile | 2 +- postgres/11/Dockerfile | 2 +- postgres/12/Dockerfile | 2 +- postgres/13/Dockerfile | 2 +- postgres/14/Dockerfile | 2 +- postgres/16/Dockerfile | 2 +- postgres/9/Dockerfile | 2 +- redis/5/Dockerfile | 2 +- redis/6/Dockerfile | 2 +- redis/7/Dockerfile | 2 +- steamcmd/dotnet/Dockerfile | 2 +- 38 files changed, 40 insertions(+), 40 deletions(-) diff --git a/bot/parkertron/Dockerfile b/bot/parkertron/Dockerfile index c1cc297ff..ddf36fde8 100644 --- a/bot/parkertron/Dockerfile +++ b/bot/parkertron/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH debian:bookworm LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ # general packages diff --git a/bot/sinusbot/Dockerfile b/bot/sinusbot/Dockerfile index bba2c0c16..cd7b896f3 100644 --- a/bot/sinusbot/Dockerfile +++ b/bot/sinusbot/Dockerfile @@ -3,7 +3,7 @@ FROM --platform=$TARGETOS/$TARGETARCH debian:bookworm-slim LABEL org.opencontainers.image.authors="i2007@damw.eu" LABEL version="1.0" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive # Install Dependencies RUN apt update \ @@ -14,8 +14,8 @@ RUN apt update \ && useradd -m -d /home/container container #RUN python3 -m pip install requests -ENV LANG C.UTF-8 -ENV LC_ALL C.UTF-8 +ENV LANG=C.UTF-8 +ENV LC_ALL=C.UTF-8 USER container ENV USER=container HOME=/home/container diff --git a/box64/Dockerfile b/box64/Dockerfile index d0ae99e79..4b5d43d8c 100644 --- a/box64/Dockerfile +++ b/box64/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH debian:bookworm-slim LABEL author="QuintenQVD" maintainer="josdekurk@gmail.com" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive ## Update base packages RUN apt update \ diff --git a/dotnet/2.1/Dockerfile b/dotnet/2.1/Dockerfile index 58dcaff37..65f4468b0 100644 --- a/dotnet/2.1/Dockerfile +++ b/dotnet/2.1/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt upgrade -y \ diff --git a/dotnet/3.1/Dockerfile b/dotnet/3.1/Dockerfile index 18fa76783..d17305953 100644 --- a/dotnet/3.1/Dockerfile +++ b/dotnet/3.1/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt upgrade -y \ diff --git a/dotnet/5/Dockerfile b/dotnet/5/Dockerfile index 5bafee2d1..9f444e1d9 100644 --- a/dotnet/5/Dockerfile +++ b/dotnet/5/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt upgrade -y \ diff --git a/dotnet/6/Dockerfile b/dotnet/6/Dockerfile index 9494f7644..2f5c65d97 100644 --- a/dotnet/6/Dockerfile +++ b/dotnet/6/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt upgrade -y \ diff --git a/dotnet/7/Dockerfile b/dotnet/7/Dockerfile index 78a389a96..985601f83 100644 --- a/dotnet/7/Dockerfile +++ b/dotnet/7/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt upgrade -y \ diff --git a/dotnet/8/Dockerfile b/dotnet/8/Dockerfile index b158d0310..dd462021b 100644 --- a/dotnet/8/Dockerfile +++ b/dotnet/8/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt upgrade -y \ diff --git a/dotnet/9/Dockerfile b/dotnet/9/Dockerfile index 7ffef5872..3fd591ee0 100644 --- a/dotnet/9/Dockerfile +++ b/dotnet/9/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ghcr.io/parkervcp/yolks:debian LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt upgrade -y \ diff --git a/games/altv/Dockerfile b/games/altv/Dockerfile index 0422fae97..e01dd6cc6 100644 --- a/games/altv/Dockerfile +++ b/games/altv/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH node:16-bookworm LABEL author="goover" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN useradd -m -d /home/container -s /bin/bash container diff --git a/games/minetest/Dockerfile b/games/minetest/Dockerfile index 50ead4a02..5f5c4f815 100644 --- a/games/minetest/Dockerfile +++ b/games/minetest/Dockerfile @@ -1,5 +1,5 @@ FROM --platform=$TARGETOS/$TARGETARCH ubuntu:22.04 -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y curl ca-certificates openssl git tar gnupg2 sqlite3 fontconfig tzdata iproute2 libfreetype6 software-properties-common \ diff --git a/games/mta/Dockerfile b/games/mta/Dockerfile index baa9d17b0..28074a2d7 100644 --- a/games/mta/Dockerfile +++ b/games/mta/Dockerfile @@ -1,6 +1,6 @@ FROM --platform=$TARGETOS/$TARGETARCH ubuntu:20.04 -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive ## add container user RUN useradd -m -d /home/container -s /bin/bash container diff --git a/games/valheim/Dockerfile b/games/valheim/Dockerfile index 8dde544d3..f6c20b510 100644 --- a/games/valheim/Dockerfile +++ b/games/valheim/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH ubuntu:22.04 LABEL author="Daniel Barton" maintainer="danny6167@gmail.com" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive ## add container user RUN useradd -m -d /home/container -s /bin/bash container diff --git a/mariadb/10.3/Dockerfile b/mariadb/10.3/Dockerfile index 17d80fe9e..1c9db09e5 100644 --- a/mariadb/10.3/Dockerfile +++ b/mariadb/10.3/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:10.3 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat \ diff --git a/mariadb/10.4/Dockerfile b/mariadb/10.4/Dockerfile index 83673e0f5..37e42d9e5 100644 --- a/mariadb/10.4/Dockerfile +++ b/mariadb/10.4/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:10.4 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat \ diff --git a/mariadb/10.5/Dockerfile b/mariadb/10.5/Dockerfile index 0bbf825e8..ab7d5bea4 100644 --- a/mariadb/10.5/Dockerfile +++ b/mariadb/10.5/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:10.5 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat \ diff --git a/mariadb/10.6/Dockerfile b/mariadb/10.6/Dockerfile index ea443ca6d..60f3939e1 100644 --- a/mariadb/10.6/Dockerfile +++ b/mariadb/10.6/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:10.6 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat \ diff --git a/mariadb/10.7/Dockerfile b/mariadb/10.7/Dockerfile index 667aa8186..d514c83a0 100644 --- a/mariadb/10.7/Dockerfile +++ b/mariadb/10.7/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:10.7 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat \ diff --git a/mariadb/11.2/Dockerfile b/mariadb/11.2/Dockerfile index 811ee7df6..b3398edb1 100644 --- a/mariadb/11.2/Dockerfile +++ b/mariadb/11.2/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.2 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat \ diff --git a/mariadb/11.3/Dockerfile b/mariadb/11.3/Dockerfile index a2533c2a2..535e52305 100644 --- a/mariadb/11.3/Dockerfile +++ b/mariadb/11.3/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.3 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat \ diff --git a/mariadb/11.4/Dockerfile b/mariadb/11.4/Dockerfile index 4bb949e0e..d4b229398 100644 --- a/mariadb/11.4/Dockerfile +++ b/mariadb/11.4/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mariadb:11.4 LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat-traditional \ diff --git a/mongodb/4/Dockerfile b/mongodb/4/Dockerfile index 52b6885ac..bab5f3e8f 100644 --- a/mongodb/4/Dockerfile +++ b/mongodb/4/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mongo:4-focal LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat iproute2 \ diff --git a/mongodb/5/Dockerfile b/mongodb/5/Dockerfile index 0b7002159..aeaf3c24c 100644 --- a/mongodb/5/Dockerfile +++ b/mongodb/5/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mongo:5-focal LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat iproute2 \ diff --git a/mongodb/6/Dockerfile b/mongodb/6/Dockerfile index 0e73bbe40..b347e10ea 100644 --- a/mongodb/6/Dockerfile +++ b/mongodb/6/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mongo:6-jammy LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat iproute2 \ diff --git a/mongodb/7/Dockerfile b/mongodb/7/Dockerfile index 7773d415c..ee446e6d5 100644 --- a/mongodb/7/Dockerfile +++ b/mongodb/7/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH mongo:7-jammy LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt update -y \ && apt install -y netcat iproute2 \ diff --git a/oses/debian/Dockerfile b/oses/debian/Dockerfile index 39eb43004..c6d7fe011 100644 --- a/oses/debian/Dockerfile +++ b/oses/debian/Dockerfile @@ -5,7 +5,7 @@ LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" LABEL org.opencontainers.image.source="https://github.com/pterodactyl/yolks" LABEL org.opencontainers.image.licenses=MIT -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN useradd -m -d /home/container -s /bin/bash container diff --git a/postgres/10/Dockerfile b/postgres/10/Dockerfile index 075d12e3b..3cbd93b07 100644 --- a/postgres/10/Dockerfile +++ b/postgres/10/Dockerfile @@ -11,7 +11,7 @@ RUN adduser -D -h /home/container container RUN apk add --no-cache tini curl iproute2 ca-certificates fontconfig git openssl sqlite tar tzdata USER container -ENV HOME /home/container +ENV HOME=/home/container WORKDIR /home/container STOPSIGNAL SIGINT diff --git a/postgres/11/Dockerfile b/postgres/11/Dockerfile index 992062e72..e563ce233 100644 --- a/postgres/11/Dockerfile +++ b/postgres/11/Dockerfile @@ -11,7 +11,7 @@ RUN adduser -D -h /home/container container RUN apk add --no-cache tini curl iproute2 ca-certificates fontconfig git openssl sqlite tar tzdata USER container -ENV HOME /home/container +ENV HOME=/home/container WORKDIR /home/container STOPSIGNAL SIGINT diff --git a/postgres/12/Dockerfile b/postgres/12/Dockerfile index 6dc5db190..696a68eb9 100644 --- a/postgres/12/Dockerfile +++ b/postgres/12/Dockerfile @@ -11,7 +11,7 @@ RUN adduser -D -h /home/container container RUN apk add --no-cache tini curl iproute2 ca-certificates fontconfig git openssl sqlite tar tzdata USER container -ENV HOME /home/container +ENV HOME=/home/container WORKDIR /home/container STOPSIGNAL SIGINT diff --git a/postgres/13/Dockerfile b/postgres/13/Dockerfile index d86c0337f..5fa31b9d5 100644 --- a/postgres/13/Dockerfile +++ b/postgres/13/Dockerfile @@ -11,7 +11,7 @@ RUN adduser -D -h /home/container container RUN apk add --no-cache tini curl iproute2 ca-certificates fontconfig git openssl sqlite tar tzdata USER container -ENV HOME /home/container +ENV HOME=/home/container WORKDIR /home/container STOPSIGNAL SIGINT diff --git a/postgres/14/Dockerfile b/postgres/14/Dockerfile index 4c8b01978..411d84eab 100644 --- a/postgres/14/Dockerfile +++ b/postgres/14/Dockerfile @@ -11,7 +11,7 @@ RUN adduser -D -h /home/container container RUN apk add --no-cache tini curl iproute2 ca-certificates fontconfig git openssl sqlite tar tzdata fontconfig git openssl sqlite tar tzdata USER container -ENV HOME /home/container +ENV HOME=/home/container WORKDIR /home/container STOPSIGNAL SIGINT diff --git a/postgres/16/Dockerfile b/postgres/16/Dockerfile index a4eec3831..c2ea94538 100644 --- a/postgres/16/Dockerfile +++ b/postgres/16/Dockerfile @@ -10,7 +10,7 @@ RUN adduser -D -h /home/container container RUN apk add --no-cache tini curl iproute2 ca-certificates fontconfig git openssl sqlite tar tzdata USER container -ENV HOME /home/container +ENV HOME=/home/container WORKDIR /home/container STOPSIGNAL SIGINT diff --git a/postgres/9/Dockerfile b/postgres/9/Dockerfile index d1b5840a6..a100fe557 100644 --- a/postgres/9/Dockerfile +++ b/postgres/9/Dockerfile @@ -10,7 +10,7 @@ RUN adduser -D -h /home/container container RUN apk add --no-cache tini curl iproute2 ca-certificates fontconfig git openssl sqlite tar tzdata USER container -ENV HOME /home/container +ENV HOME=/home/container WORKDIR /home/container STOPSIGNAL SIGINT diff --git a/redis/5/Dockerfile b/redis/5/Dockerfile index 0bf23ec31..b1cc3986d 100644 --- a/redis/5/Dockerfile +++ b/redis/5/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH redis:5-bullseye LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt -y update && \ apt -y upgrade && \ diff --git a/redis/6/Dockerfile b/redis/6/Dockerfile index 0f90b6f5b..91f31a7d9 100644 --- a/redis/6/Dockerfile +++ b/redis/6/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH redis:6-bookworm LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt -y update && \ apt -y upgrade && \ diff --git a/redis/7/Dockerfile b/redis/7/Dockerfile index def8d7e07..d245457b9 100644 --- a/redis/7/Dockerfile +++ b/redis/7/Dockerfile @@ -5,7 +5,7 @@ FROM --platform=$TARGETOS/$TARGETARCH redis:7-bookworm LABEL author="Michael Parker" maintainer="parker@pterodactyl.io" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN apt -y update && \ apt -y upgrade && \ diff --git a/steamcmd/dotnet/Dockerfile b/steamcmd/dotnet/Dockerfile index 52e26e60c..d75c228c4 100644 --- a/steamcmd/dotnet/Dockerfile +++ b/steamcmd/dotnet/Dockerfile @@ -2,7 +2,7 @@ FROM --platform=$TARGETOS/$TARGETARCH debian:bookworm-slim LABEL author="Torsten Widmann" maintainer="info@goover.de" -ENV DEBIAN_FRONTEND noninteractive +ENV DEBIAN_FRONTEND=noninteractive RUN dpkg --add-architecture i386 \ && apt update \ From 9b59b81095760f5b8d88625e8273eff72c28df87 Mon Sep 17 00:00:00 2001 From: Quinten <67589015+QuintenQVD0@users.noreply.github.com> Date: Fri, 3 Jan 2025 11:07:53 +0100 Subject: [PATCH 2/2] Bump: docker/build-push-action to v6 --- .github/workflows/apps.yml | 2 +- .github/workflows/base.yml | 2 +- .github/workflows/bot.yml | 4 ++-- .github/workflows/box64.yml | 2 +- .github/workflows/bun.yml | 2 +- .github/workflows/cassandra.yml | 2 +- .github/workflows/dart.yml | 2 +- .github/workflows/dotnet.yml | 2 +- .github/workflows/elixir.yml | 2 +- .github/workflows/erlang.yml | 2 +- .github/workflows/games.yml | 4 ++-- .github/workflows/go.yml | 2 +- .github/workflows/installers.yml | 2 +- .github/workflows/java.yml | 2 +- .github/workflows/mariadb.yml | 2 +- .github/workflows/mongodb.yml | 2 +- .github/workflows/mono.yml | 2 +- .github/workflows/nodejs.yml | 2 +- .github/workflows/postgres.yml | 2 +- .github/workflows/python.yml | 2 +- .github/workflows/redis.yml | 2 +- .github/workflows/rust.yml | 2 +- .github/workflows/steamcmd.yml | 2 +- .github/workflows/voice.yml | 4 ++-- .github/workflows/wine.yml | 2 +- 25 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/apps.yml b/.github/workflows/apps.yml index 7568019ea..2ec5ff563 100644 --- a/.github/workflows/apps.yml +++ b/.github/workflows/apps.yml @@ -32,7 +32,7 @@ jobs: username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./apps/${{ matrix.app }} file: ./apps/${{ matrix.app }}/Dockerfile diff --git a/.github/workflows/base.yml b/.github/workflows/base.yml index 23dd116d6..e21c66649 100644 --- a/.github/workflows/base.yml +++ b/.github/workflows/base.yml @@ -30,7 +30,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./oses/${{ matrix.oses }} file: ./oses/${{ matrix.oses }}/Dockerfile diff --git a/.github/workflows/bot.yml b/.github/workflows/bot.yml index 8b89cbd40..796171930 100644 --- a/.github/workflows/bot.yml +++ b/.github/workflows/bot.yml @@ -41,7 +41,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./bot/${{ matrix.tag }} file: ./bot/${{ matrix.tag }}/Dockerfile @@ -76,7 +76,7 @@ jobs: # registry: ghcr.io # username: ${{ github.repository_owner }} # password: ${{ secrets.REGISTRY_TOKEN }} - # - uses: docker/build-push-action@v5 + # - uses: docker/build-push-action@v6 # with: # context: ./bot/${{ matrix.tag }} # file: ./bot/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/box64.yml b/.github/workflows/box64.yml index 971b30c95..d9450322d 100644 --- a/.github/workflows/box64.yml +++ b/.github/workflows/box64.yml @@ -28,7 +28,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./box64 file: ./${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/bun.yml b/.github/workflows/bun.yml index 7aaf53a81..82b3db7db 100644 --- a/.github/workflows/bun.yml +++ b/.github/workflows/bun.yml @@ -29,7 +29,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./bun file: ./bun/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/cassandra.yml b/.github/workflows/cassandra.yml index b2b81e69a..54b44edfb 100644 --- a/.github/workflows/cassandra.yml +++ b/.github/workflows/cassandra.yml @@ -28,7 +28,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./cassandra file: ./cassandra/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/dart.yml b/.github/workflows/dart.yml index 0738f978d..9f2f027e4 100644 --- a/.github/workflows/dart.yml +++ b/.github/workflows/dart.yml @@ -33,7 +33,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./dart file: ./dart/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 355e22805..addc03682 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -35,7 +35,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./dotnet file: ./dotnet/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/elixir.yml b/.github/workflows/elixir.yml index 09d767906..dd8e9a98a 100644 --- a/.github/workflows/elixir.yml +++ b/.github/workflows/elixir.yml @@ -32,7 +32,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./elixir file: ./elixir/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/erlang.yml b/.github/workflows/erlang.yml index 0a4936612..227de6abc 100644 --- a/.github/workflows/erlang.yml +++ b/.github/workflows/erlang.yml @@ -31,7 +31,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./erlang file: ./erlang/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/games.yml b/.github/workflows/games.yml index 65f899ea3..d1e4e7d1f 100644 --- a/.github/workflows/games.yml +++ b/.github/workflows/games.yml @@ -36,7 +36,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./games/${{ matrix.game }} file: ./games/${{ matrix.game }}/Dockerfile @@ -68,7 +68,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./games/${{ matrix.game }} file: ./games/${{ matrix.game }}/Dockerfile diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index fdfaf6bbe..9dc62cb12 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -36,7 +36,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./go file: ./go/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/installers.yml b/.github/workflows/installers.yml index 86247c2f9..05b00c1b0 100644 --- a/.github/workflows/installers.yml +++ b/.github/workflows/installers.yml @@ -30,7 +30,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./installers file: ./installers/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/java.yml b/.github/workflows/java.yml index ae681f686..c7e80caf3 100644 --- a/.github/workflows/java.yml +++ b/.github/workflows/java.yml @@ -36,7 +36,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./java file: ./java/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/mariadb.yml b/.github/workflows/mariadb.yml index 8ad62598b..c9070e1e2 100644 --- a/.github/workflows/mariadb.yml +++ b/.github/workflows/mariadb.yml @@ -36,7 +36,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./mariadb file: ./mariadb/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/mongodb.yml b/.github/workflows/mongodb.yml index cfe8bda64..8d5fae7da 100644 --- a/.github/workflows/mongodb.yml +++ b/.github/workflows/mongodb.yml @@ -32,7 +32,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./mongodb file: ./mongodb/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/mono.yml b/.github/workflows/mono.yml index cdc8aa3a5..57f7809ee 100644 --- a/.github/workflows/mono.yml +++ b/.github/workflows/mono.yml @@ -27,7 +27,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./mono file: ./mono/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index c327df6ae..2417e1b39 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -38,7 +38,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./nodejs file: ./nodejs/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/postgres.yml b/.github/workflows/postgres.yml index b76595f6e..4a372a041 100644 --- a/.github/workflows/postgres.yml +++ b/.github/workflows/postgres.yml @@ -35,7 +35,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./postgres file: ./postgres/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 6a4e83e1f..c9a663fd2 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -36,7 +36,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./python file: ./python/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/redis.yml b/.github/workflows/redis.yml index 5ae84711d..cca545984 100644 --- a/.github/workflows/redis.yml +++ b/.github/workflows/redis.yml @@ -31,7 +31,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./redis file: ./redis/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 03e30ba2b..3480bae8f 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -31,7 +31,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./rust file: ./rust/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/steamcmd.yml b/.github/workflows/steamcmd.yml index 841d0a8db..0240a9c11 100644 --- a/.github/workflows/steamcmd.yml +++ b/.github/workflows/steamcmd.yml @@ -32,7 +32,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./steamcmd file: ./steamcmd/${{ matrix.distro }}/Dockerfile diff --git a/.github/workflows/voice.yml b/.github/workflows/voice.yml index bc5f38822..115f64be5 100644 --- a/.github/workflows/voice.yml +++ b/.github/workflows/voice.yml @@ -27,7 +27,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./voice/${{ matrix.tag }} file: ./voice/${{ matrix.tag }}/Dockerfile @@ -59,7 +59,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./voice/${{ matrix.tag }} file: ./voice/${{ matrix.tag }}/Dockerfile diff --git a/.github/workflows/wine.yml b/.github/workflows/wine.yml index bd3f580f0..3611c0c7d 100644 --- a/.github/workflows/wine.yml +++ b/.github/workflows/wine.yml @@ -29,7 +29,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.REGISTRY_TOKEN }} - - uses: docker/build-push-action@v5 + - uses: docker/build-push-action@v6 with: context: ./wine file: ./wine/${{ matrix.tag }}/Dockerfile