From 1f0cae24b7c2e10b0a319106e5f362f96f1db6d2 Mon Sep 17 00:00:00 2001 From: Thijs van Loef Date: Tue, 18 Jun 2024 13:15:07 +0200 Subject: [PATCH 1/3] update Supercronic to 0.2.30 --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index e3f6c413b..5a856263e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -39,9 +39,9 @@ LABEL maintainer="thijs@loef.dev" \ # SUPERCRONIC: Latest releases available at https://github.com/aptible/supercronic/releases # RCON: Latest releases available at https://github.com/gorcon/rcon-cli/releases # NOTICE: edit RCON_MD5SUM SUPERCRONIC_SHA1SUM when using binaries of another version or arch. -ARG SUPERCRONIC_SHA1SUM_ARM64="512f6736450c56555e01b363144c3c9d23abed4c" -ARG SUPERCRONIC_SHA1SUM_AMD64="cd48d45c4b10f3f0bfdd3a57d054cd05ac96812b" -ARG SUPERCRONIC_VERSION="0.2.29" +ARG SUPERCRONIC_SHA1SUM_ARM64="d5e02aa760b3d434bc7b991777aa89ef4a503e49" +ARG SUPERCRONIC_SHA1SUM_AMD64="9f27ad28c5c57cd133325b2a66bba69ba2235799" +ARG SUPERCRONIC_VERSION="0.2.30" # update and install dependencies # hadolint ignore=DL3008 From 3c5834b838a46fa4fcb6c35c37c4c287caa169b3 Mon Sep 17 00:00:00 2001 From: Thijs van Loef Date: Tue, 18 Jun 2024 13:34:46 +0200 Subject: [PATCH 2/3] remove palworld volume from test --- .github/workflows/unit-test.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 5990dec0c..25130116a 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -161,7 +161,6 @@ jobs: -p 8211:8211/udp \ -p 27015:27015/udp \ -p 25575:25575/tcp \ - -v ./palworld:/palworld/ \ --env-file .env.example \ --restart unless-stopped \ --stop-timeout 30 \ From 7fb20c7779ff06ab06bb9dfba5608afc4d97a8bb Mon Sep 17 00:00:00 2001 From: Thijs van Loef Date: Tue, 18 Jun 2024 13:50:22 +0200 Subject: [PATCH 3/3] add palworld volume with variable --- .github/workflows/unit-test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 25130116a..e00ce9a62 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -161,6 +161,7 @@ jobs: -p 8211:8211/udp \ -p 27015:27015/udp \ -p 25575:25575/tcp \ + -v ./palworld-${{ github.run_id }}:/palworld/ \ --env-file .env.example \ --restart unless-stopped \ --stop-timeout 30 \