From ee1c63eff0a4823260678e206c1fef21840ca22c Mon Sep 17 00:00:00 2001 From: Sergey Panteleev Date: Thu, 26 Sep 2024 09:54:24 +0300 Subject: [PATCH 1/3] Bump GH-action tools --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ef4921f..992a87c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: tools: composer:v2 - name: Install PHP deps - uses: ramsey/composer-install@v2 + uses: ramsey/composer-install@v3 - name: Build run: | From 9eebdecc83180a1f824182ed03a97155c1978d06 Mon Sep 17 00:00:00 2001 From: Sergey Panteleev Date: Thu, 26 Sep 2024 10:02:43 +0300 Subject: [PATCH 2/3] Fix repositories --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 77f3061..881c9ef 100644 --- a/composer.json +++ b/composer.json @@ -11,8 +11,8 @@ "repositories": [ { - "type": "vcs", - "url": "https://github.com/pronskiy/conductor" + "type": "git", + "url": "https://github.com/pronskiy/conductor.git" } ], From a371ea138f84f60a4fe70cb14d93b7405167df05 Mon Sep 17 00:00:00 2001 From: Sergey Panteleev Date: Thu, 26 Sep 2024 10:08:46 +0300 Subject: [PATCH 3/3] Update box installation --- .github/workflows/release.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 992a87c..35c78f4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,16 +13,13 @@ jobs: uses: shivammathur/setup-php@v2 with: php-version: 8.3 - tools: composer:v2 + tools: composer:v2, box - name: Install PHP deps uses: ramsey/composer-install@v3 - name: Build - run: | - curl -OL "https://github.com/box-project/box/releases/latest/download/box.phar" - mv box.phar box - make build + run: make build - name: Release uses: softprops/action-gh-release@v2