From d71f4731b16130527237bea93b5941a6ccba5538 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 19:57:13 +0200 Subject: [PATCH 1/4] Update GH Actions (#54) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/test-crystal-shards.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test-crystal-shards.yml b/.github/workflows/test-crystal-shards.yml index cc55899..a8b722a 100644 --- a/.github/workflows/test-crystal-shards.yml +++ b/.github/workflows/test-crystal-shards.yml @@ -98,7 +98,7 @@ jobs: cat ../build-cache-key - name: Build cache id: build-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ./crystal/.build/crystal @@ -124,7 +124,7 @@ jobs: make bin/shards CRYSTAL=../crystal/bin/crystal bin/shards --version - name: Artifact (with permissions) - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ./test-ecosystem @@ -165,11 +165,11 @@ jobs: container: ubuntu:latest services: postgres: - image: postgres:16.1-alpine + image: postgres:16.4-alpine env: POSTGRES_HOST_AUTH_METHOD: trust mysql: - image: mysql:8.2 + image: mysql:9.0 env: MYSQL_ALLOW_EMPTY_PASSWORD: 'yes' redis: @@ -177,7 +177,7 @@ jobs: needs: build steps: - name: Artifact (with permissions) - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ./test-ecosystem @@ -199,11 +199,11 @@ jobs: ./test-ecosystem/scripts/apt-install-crystal-deps.sh ./test-ecosystem/scripts/00-install-bats.sh - name: Initialize postgres - uses: docker://postgres:16.1-alpine + uses: docker://postgres:16.4-alpine with: args: /bin/sh -c "psql -U postgres -h postgres -f ./test-ecosystem/scripts/pg-init.sql" - name: Initialize mysql - uses: docker://mysql:8.2 + uses: docker://mysql:9.0 with: args: /bin/sh -c "mysql -uroot -h mysql < ./test-ecosystem/scripts/mysql-init.sql" - name: Configure git From 48f6c2e49b4ed367089bcbf65693e69299e855d3 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 14:14:02 +0200 Subject: [PATCH 2/4] Update postgres Docker tag to v17 (#60) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 1f0f6d6..f7f8608 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '2.0' services: postgres: - image: postgres:15.3-alpine + image: postgres:17.0-alpine environment: POSTGRES_HOST_AUTH_METHOD: trust From fcb1b384bab26e9d7342c195ab412150edf3b9eb Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 07:51:02 +0200 Subject: [PATCH 3/4] Update postgres Docker tag to v17 (#61) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- .github/workflows/test-crystal-shards.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-crystal-shards.yml b/.github/workflows/test-crystal-shards.yml index a8b722a..dba711e 100644 --- a/.github/workflows/test-crystal-shards.yml +++ b/.github/workflows/test-crystal-shards.yml @@ -165,7 +165,7 @@ jobs: container: ubuntu:latest services: postgres: - image: postgres:16.4-alpine + image: postgres:17.0-alpine env: POSTGRES_HOST_AUTH_METHOD: trust mysql: @@ -199,7 +199,7 @@ jobs: ./test-ecosystem/scripts/apt-install-crystal-deps.sh ./test-ecosystem/scripts/00-install-bats.sh - name: Initialize postgres - uses: docker://postgres:16.4-alpine + uses: docker://postgres:17.0-alpine with: args: /bin/sh -c "psql -U postgres -h postgres -f ./test-ecosystem/scripts/pg-init.sql" - name: Initialize mysql From 9509994c58f7d451c66ddfd50fa9390ba292deca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20M=C3=BCller?= Date: Thu, 10 Oct 2024 10:53:22 +0200 Subject: [PATCH 4/4] Update previous Crystal release 1.14.0 (#62) --- .github/workflows/test-crystal-shards.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-crystal-shards.yml b/.github/workflows/test-crystal-shards.yml index dba711e..5efc8db 100644 --- a/.github/workflows/test-crystal-shards.yml +++ b/.github/workflows/test-crystal-shards.yml @@ -25,7 +25,7 @@ on: default: 'release=1' required: false previous_crystal_release: - default: 'https://github.com/crystal-lang/crystal/releases/download/1.13.1/crystal-1.13.1-1-linux-x86_64.tar.gz' + default: 'https://github.com/crystal-lang/crystal/releases/download/1.14.0/crystal-1.14.0-1-linux-x86_64.tar.gz' required: true jobs: build: