From c33085391025cd9dc4a00fc5db273f5437d1da23 Mon Sep 17 00:00:00 2001 From: Thomas Heartman Date: Tue, 14 Jan 2025 09:26:11 +0100 Subject: [PATCH] chore: update checkout action; remove git config setting This change updates the checkout action to v4 and removes the git config setup. The config setup should be handled automatically (we think) --- .github/workflows/npm-release.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/npm-release.yml b/.github/workflows/npm-release.yml index a6ddef1..34a9ed4 100644 --- a/.github/workflows/npm-release.yml +++ b/.github/workflows/npm-release.yml @@ -41,15 +41,10 @@ jobs: app-id: ${{ secrets.UNLEASH_BOT_APP_ID }} private-key: ${{ secrets.UNLEASH_BOT_PRIVATE_KEY }} - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: token: ${{ steps.generate-token.outputs.token }} - - name: Setup git config - run: | - git config user.name "GitHub Actions Bot" - git config user.email "<>" - - name: Use Node.js uses: actions/setup-node@v4 with: