From ddf72cba819c89b347da359b9c75730d6a70e90e Mon Sep 17 00:00:00 2001 From: wolfy1339 <4595477+wolfy1339@users.noreply.github.com> Date: Tue, 16 Feb 2021 05:56:39 -0500 Subject: [PATCH] ci(update): move the install of @octokit/webhooks-definitions to after the wait action (#473) --- .github/workflows/update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index 7d2b3a29..4628b31d 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -11,11 +11,11 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 - run: npm ci - - run: npm install --save-exact @octokit/webhooks-definitions@latest - uses: gr2m/await-npm-package-version-action@v1 with: package: "@octokit/webhooks-definitions" version: ${{ github.event.client_payload.release.tag_name }} + - run: npm install --save-exact @octokit/webhooks-definitions@latest - run: npm run generate-types - name: create pull request uses: gr2m/create-or-update-pull-request-action@v1.x