From 4ff3990ee6d5710d6c8bd62a96fddd44fe39c1e7 Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Fri, 19 Apr 2024 08:44:59 +0200 Subject: [PATCH 1/2] :arrow_up: deps: Upgrade ArcticLampyrid/action-wait-for-workflow to v1.2.0. And leverage new `with.sha: auto` feature. --- .github/workflows/ci:build:compose.yml | 4 ++-- .github/workflows/ci:test:deploy.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci:build:compose.yml b/.github/workflows/ci:build:compose.yml index 7ebaa89ea..c56a586ed 100644 --- a/.github/workflows/ci:build:compose.yml +++ b/.github/workflows/ci:build:compose.yml @@ -29,10 +29,10 @@ jobs: uses: actions/checkout@v4 - name: Wait for image build workflow to succeed - uses: ArcticLampyrid/action-wait-for-workflow@v1.0.4 + uses: ArcticLampyrid/action-wait-for-workflow@v1.2.0 with: workflow: ci:build:image.yml - sha: ${{ github.sha }} + sha: auto - name: Set up Docker Buildx uses: docker/setup-buildx-action@v3 diff --git a/.github/workflows/ci:test:deploy.yml b/.github/workflows/ci:test:deploy.yml index 9f8e8f140..1a18653e3 100644 --- a/.github/workflows/ci:test:deploy.yml +++ b/.github/workflows/ci:test:deploy.yml @@ -29,10 +29,10 @@ jobs: uses: actions/checkout@v4 - name: Wait for image build workflow to succeed - uses: ArcticLampyrid/action-wait-for-workflow@v1.0.4 + uses: ArcticLampyrid/action-wait-for-workflow@v1.2.0 with: workflow: ci:build:image.yml - sha: ${{ github.sha }} + sha: auto - name: Log in to GitHub Packages registry uses: docker/login-action@v3 From f9f25737809a7411c2315858cc8043e74bf8e772 Mon Sep 17 00:00:00 2001 From: make-github-pseudonymous-again <5165674+make-github-pseudonymous-again@users.noreply.github.com> Date: Fri, 19 Apr 2024 08:57:38 +0200 Subject: [PATCH 2/2] :gear: config(ci): Increase timeout of `ci:test:deploy` main job. Because we need to wait for the image push. --- .github/workflows/ci:test:deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci:test:deploy.yml b/.github/workflows/ci:test:deploy.yml index 1a18653e3..099a05cd0 100644 --- a/.github/workflows/ci:test:deploy.yml +++ b/.github/workflows/ci:test:deploy.yml @@ -22,7 +22,7 @@ jobs: runs-on: ${{ matrix.platform }} - timeout-minutes: 4 + timeout-minutes: 18 steps: - name: Checkout 🛎️