From f99119ab59fff7a0c63614539132a34bb636cae1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=82ngelo=20Tadeucci?= Date: Tue, 6 Jun 2023 20:09:58 -0300 Subject: [PATCH] Update prettier.yml --- .github/workflows/prettier.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/prettier.yml b/.github/workflows/prettier.yml index 0e501c9b..26270f08 100644 --- a/.github/workflows/prettier.yml +++ b/.github/workflows/prettier.yml @@ -6,16 +6,18 @@ jobs: format: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Checkout + uses: actions/checkout@v3.5.2 with: ref: ${{ github.head_ref }} - - uses: actions/setup-node@v1 + - name: Setup Node.js environment + uses: actions/setup-node@v2.5.2 with: node-version: "18.x" - run: npm ci - run: npm run prettier - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4.1.2 + uses: stefanzweifel/git-auto-commit-action@v4.16.0 with: commit_message: Apply prettier changes branch: ${{ github.head_ref }}