diff --git a/.github/workflows/validation.yml b/.github/workflows/validation.yml index 395faeb..1c22da6 100644 --- a/.github/workflows/validation.yml +++ b/.github/workflows/validation.yml @@ -21,7 +21,7 @@ jobs: - uses: actions/checkout@v4 - name: Use Node.js ${{ env.WORKFLOW_NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.WORKFLOW_NODE_VERSION }} @@ -37,10 +37,10 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Use Node.js ${{ env.WORKFLOW_NODE_VERSION }} - uses: actions/setup-node@v3 + uses: actions/setup-node@v4 with: node-version: ${{ env.WORKFLOW_NODE_VERSION }} @@ -55,7 +55,7 @@ jobs: uses: reviewdog/action-eslint@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - reporter: github-pr-check + reporter: github-pr-annotations filter_mode: ${{ (github.event_name == 'pull_request') && 'file' || 'nofilter' }} level: ${{ (github.event_name == 'pull_request') && 'error' || 'warning' }} tool_name: ESLint @@ -64,7 +64,7 @@ jobs: uses: EPMatt/reviewdog-action-prettier@v1 with: github_token: ${{ secrets.GITHUB_TOKEN }} - reporter: github-pr-check + reporter: github-pr-annotations filter_mode: ${{ (github.event_name == 'pull_request') && 'file' || 'nofilter' }} level: ${{ (github.event_name == 'pull_request') && 'error' || 'warning' }} tool_name: Prettier