From 044d7f7ddeb7e673a36c917eebcd876c3d0a0c09 Mon Sep 17 00:00:00 2001 From: Alvaro Erickson <24833189+alerickson0@users.noreply.github.com> Date: Wed, 2 Oct 2024 16:25:38 -0700 Subject: [PATCH] fixes #897: Update versions of GHA's (#896) --- .github/workflows/ReleaseIssue.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ReleaseIssue.yml b/.github/workflows/ReleaseIssue.yml index 010af74..59daf5f 100644 --- a/.github/workflows/ReleaseIssue.yml +++ b/.github/workflows/ReleaseIssue.yml @@ -12,21 +12,26 @@ jobs: # Repo code checkout required if `template` is used - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v4 # Get current month for issue title - name: get-date id: date - run: echo "::set-output name=date::$(date +'%B %Y')" + run: echo "date=$(date +'%B %Y')" >> $GITHUB_OUTPUT # Create, pin, label, and assign release issue + - name: create-issue + id: extract + uses: imjohnbo/extract-issue-template-fields@v1 + with: + path: ".github/RELEASE_TEMPLATE.md" + - name: create-issue id: issue - uses: imjohnbo/issue-bot@v2 + uses: imjohnbo/issue-bot@v3 with: pinned: true close-previous: true title: "RELEASE THREAD: ${{ steps.date.outputs.date }}" - template: ".github/RELEASE_TEMPLATE.md" env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}