From 5640aaaa1b8a2dd003e3f688872f4e8c1c4da52c Mon Sep 17 00:00:00 2001 From: Marco Gandi Date: Fri, 28 Jul 2023 22:11:21 +0200 Subject: [PATCH 1/2] Update github-action-setup-ddev action to the new repo --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3fecf8a..24709d1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -16,7 +16,7 @@ jobs: uses: actions/setup-node@v3.4.1 - name: Setup ddev - uses: jonaseberle/github-action-setup-ddev@v1 + uses: ddev/github-action-setup-ddev@v1 - name: Install Drupal with Tome run: ddev drupal-install From 13241d3af1318a8f4810d9880832f8f66b9ba40f Mon Sep 17 00:00:00 2001 From: Marco Gandi Date: Fri, 28 Jul 2023 22:15:51 +0200 Subject: [PATCH 2/2] Update GitHub Action actions to looser constrain This is also reccomended in the Basic example of https://github.com/actions/setup-node#usage --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 24709d1..8261166 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,10 +10,10 @@ jobs: steps: - name: Checkout 🛎 - uses: actions/checkout@master + uses: actions/checkout@v3 - name: Setup node env 🏗 - uses: actions/setup-node@v3.4.1 + uses: actions/setup-node@v3 - name: Setup ddev uses: ddev/github-action-setup-ddev@v1