From 592d33aa365fa49ba736e7401d7fb636b63310f3 Mon Sep 17 00:00:00 2001 From: Aaron Scofield Date: Tue, 30 Apr 2024 16:30:39 -0400 Subject: [PATCH] incremement upload-artifact action version (#64) As per https://github.blog/changelog/2024-04-16-deprecation-notice-v3-of-the-artifact-actions/, version 3 of the upload-artifact action will be deprecated as of November 30th 2024. This change increments the version to 4. --- .github/steps/3-upload-test-reports.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/steps/3-upload-test-reports.md b/.github/steps/3-upload-test-reports.md index f92623b..12f2a23 100644 --- a/.github/steps/3-upload-test-reports.md +++ b/.github/steps/3-upload-test-reports.md @@ -30,7 +30,7 @@ To upload artifacts to the artifact storage, we can use an action built by GitHu npm install remark-cli remark-preset-lint-consistent vfile-reporter-json npx remark . --use remark-preset-lint-consistent --report vfile-reporter-json 2> remark-lint-report.json - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: remark-lint-report path: remark-lint-report.json