From 59eefa36591382e2ba400ac4f632b107439dd487 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 28 Jul 2020 12:53:07 +0100 Subject: [PATCH] Updated call to actions/checkout to use v2 refs https://github.com/TryGhost/action-deploy-theme/issues/30 - actions/checkout has changed their default branch name from master to main, which shows warnings. --- .github/workflows/deploy-theme.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-theme.yml b/.github/workflows/deploy-theme.yml index 23bbd20..22801f3 100644 --- a/.github/workflows/deploy-theme.yml +++ b/.github/workflows/deploy-theme.yml @@ -7,7 +7,7 @@ jobs: deploy: runs-on: ubuntu-18.04 steps: - - uses: actions/checkout@master + - uses: actions/checkout@v2 - uses: TryGhost/action-deploy-theme@v1.2.1 with: api-url: ${{ secrets.GHOST_ADMIN_API_URL }}