From ac0f9298819e37d230386abba11249875b172fc6 Mon Sep 17 00:00:00 2001 From: gaorongze Date: Wed, 29 Nov 2023 11:21:33 +0800 Subject: [PATCH] Fix workflow for greetings Due to the low nodejs version of the github action component the run fails, and the switch is made to a newer version. --- .github/workflows/greetings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 285ead28597..5a606a7f3a3 100644 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -9,7 +9,7 @@ jobs: issues: write pull-requests: write steps: - - uses: actions/first-interaction@v1 + - uses: actions/first-interaction@v1.2.0 with: repo-token: ${{ secrets.GITHUB_TOKEN }} issue-message: "Hey, @${{ github.actor }} welcome!🎊 Thanks for taking the time to point this out.🙌"