diff --git a/.github/workflows/check_icon_pr.yml b/.github/workflows/check_icon_pr.yml index 3054a6f84..1731f58b5 100644 --- a/.github/workflows/check_icon_pr.yml +++ b/.github/workflows/check_icon_pr.yml @@ -32,7 +32,7 @@ jobs: run: python ./.github/scripts/check_icon_pr.py "$PR_TITLE" ./icons ./devicon.json - name: Upload the err messages - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: success() with: name: err_messages @@ -46,7 +46,7 @@ jobs: run: echo $PR_NUM > pr_num.txt - name: Upload the pr num - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 if: success() with: name: pr_num diff --git a/.github/workflows/in_develop_labeler_preflight.yml b/.github/workflows/in_develop_labeler_preflight.yml index ef3e98044..55b18c270 100644 --- a/.github/workflows/in_develop_labeler_preflight.yml +++ b/.github/workflows/in_develop_labeler_preflight.yml @@ -18,7 +18,7 @@ jobs: run: echo $PR_NUM > pr_num.txt - name: Upload the PR number - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v4 with: name: pr_num path: ./pr_num.txt diff --git a/.github/workflows/peek_icons.yml b/.github/workflows/peek_icons.yml index 66f3cee35..9ce6e9ac9 100644 --- a/.github/workflows/peek_icons.yml +++ b/.github/workflows/peek_icons.yml @@ -30,7 +30,7 @@ jobs: run: echo $PR_NUM > pr_num.txt - name: Upload the PR number - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@4 with: name: pr_num path: ./pr_num.txt @@ -45,21 +45,21 @@ jobs: ./devicon.json ./icons ./ --headless "$PR_TITLE" - name: Upload the err messages (created by icomoon_peek.py) - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v4 if: always() with: name: err_messages path: ./err_messages.txt - name: Upload screenshots for comments - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v4 if: success() with: name: screenshots path: ./screenshots/*.png - name: Upload geckodriver.log for debugging purposes - uses: actions/upload-artifact@v2.2.4 + uses: actions/upload-artifact@v4 if: failure() with: name: geckodriver-log