Skip to content

Commit

Permalink
Update score_new_plugins.yml to use actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
Current workflow uses v2. This has been causing an automatic failure in scoring jobs.

v3 is being deprecated in 2 months.

Based on `Breaking Changes` as seen on the actions readme, this should work with a simple replacement of the version number.
  • Loading branch information
KartikP authored Sep 30, 2024
1 parent 55de4cd commit c57f5cf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/score_new_plugins.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
echo "$PLUGIN_INFO" > plugin-info.json
- name: Upload PLUGIN_INFO as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: plugin-info
path: plugin-info.json
Expand All @@ -114,7 +114,7 @@ jobs:
needs: extract_email
steps:
- name: Download PLUGIN_INFO artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: plugin-info
path: artifact-directory
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
echo "$PLUGIN_INFO" > plugin-info.json
- name: Upload PLUGIN_INFO as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: plugin-info
path: plugin-info.json
Expand All @@ -161,7 +161,7 @@ jobs:
steps:

- name: Download PLUGIN_INFO artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: plugin-info
path: artifact-directory
Expand Down

0 comments on commit c57f5cf

Please sign in to comment.