From a603d3b206de15b749e73e907d8c3106dcbe164d Mon Sep 17 00:00:00 2001 From: Billy Vong Date: Fri, 24 Jan 2025 12:54:11 -0500 Subject: [PATCH] ci: fix `download-artifact` deprecation, upgrade eslint-annotate-action (#238) GHA deprecation (I think this needs to be in main branch for it to work, re: failing CI) --- .github/workflows/style-check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/style-check.yml b/.github/workflows/style-check.yml index ef20a71953..3274d7bbc8 100644 --- a/.github/workflows/style-check.yml +++ b/.github/workflows/style-check.yml @@ -40,13 +40,13 @@ jobs: runs-on: ubuntu-latest name: ESLint Annotation steps: - - uses: actions/download-artifact@v3 + - uses: actions/download-artifact@v4 with: name: eslint_report.json - name: Annotate Code Linting Results - uses: ataylorme/eslint-annotate-action@v2 + uses: ataylorme/eslint-annotate-action@d57a1193d4c59cbfbf3f86c271f42612f9dbd9e9 with: - repo-token: '${{ secrets.GITHUB_TOKEN }}' + GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' report-json: 'eslint_report.json' prettier_check: