From c65220c3f5e5c8f3394ceecf260f6831e228bce4 Mon Sep 17 00:00:00 2001 From: Steve Boyd Date: Tue, 14 Jun 2022 17:18:14 +1200 Subject: [PATCH] DEP Require v1 of gha actions --- .github/workflows/auto-tag.yml | 2 +- README.md | 2 +- action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index 33446ca..17712c8 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -9,4 +9,4 @@ jobs: runs-on: ubuntu-latest steps: - name: Auto-tag - uses: silverstripe/gha-auto-tag@main + uses: silverstripe/gha-auto-tag@v1 diff --git a/README.md b/README.md index aa48018..8cb7bf7 100644 --- a/README.md +++ b/README.md @@ -28,5 +28,5 @@ jobs: runs-on: ubuntu-latest steps: - name: Auto-tag - uses: silverstripe/gha-auto-tag@main + uses: silverstripe/gha-auto-tag@v1 ``` diff --git a/action.yml b/action.yml index d17cedf..a49fe84 100644 --- a/action.yml +++ b/action.yml @@ -28,7 +28,7 @@ runs: echo "::set-output name=tag::$NEW_TAG" - name: Add tag to repo - uses: silverstripe/gha-tag-release@main + uses: silverstripe/gha-tag-release@v1 with: tag: ${{ steps.generate_tag_name.outputs.tag }} delete_existing: true