From e7f7142dbcebdaedd9be8b54137106d1b4d2adc9 Mon Sep 17 00:00:00 2001 From: Matthew Pope <81593196+popematt@users.noreply.github.com> Date: Fri, 13 Sep 2024 13:48:43 -0700 Subject: [PATCH] Update to supported version of upload-artifact GitHub action (#71) --- .github/workflows/build.yml | 6 +++--- .github/workflows/pr.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8be7196..36e192f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -93,7 +93,7 @@ jobs: # Publish plugin to beta channel - name: Publish Beta Plugin - if: github.repository == 'amzn/ion-intellij-plugin' + if: github.repository == 'amazon-ion/ion-intellij-plugin' env: PUBLISH_TOKEN: ${{ secrets.JETBRAINS_TOKEN }} PUBLISH_CHANNEL: beta @@ -101,8 +101,8 @@ jobs: # Upload plugin artifact to make it available in the next jobs - name: Upload artifact - if: github.repository == 'amzn/ion-intellij-plugin' - uses: actions/upload-artifact@v1 + if: github.repository == 'amazon-ion/ion-intellij-plugin' + uses: actions/upload-artifact@v4 with: name: ${{ matrix.product }}-plugin-artifact path: ./build/distributions/${{ needs.build.outputs.artifact }} diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 5c6e581..8094d53 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -95,7 +95,7 @@ jobs: # Upload plugin artifact to make it available in the next jobs - name: Upload artifact - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: ${{ matrix.product }}-plugin-artifact path: ./build/distributions/${{ needs.build.outputs.artifact }}