From 0a357261e2f0f282bf620fabf45a6f51fedfb174 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 f8432758a768f36dfd9af4c2d9bd36d2300a026d 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 1f97f3d8022431d64352666b04adaf65306e7118 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 \