diff --git a/.github/workflows/building-uploading-all.yml b/.github/workflows/building-uploading-all.yml index ac8f61f..24d7119 100644 --- a/.github/workflows/building-uploading-all.yml +++ b/.github/workflows/building-uploading-all.yml @@ -26,7 +26,7 @@ jobs: brew test-bot --only-formulae ${{github.event.inputs.formula}} - name: Upload bottles if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: bottles path: '*.bottle.*' @@ -39,7 +39,7 @@ jobs: - name: Set up git uses: Homebrew/actions/git-user-config@master - name: Download bottles - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: bottles - name: Publish bottles diff --git a/.github/workflows/building-uploading.yml b/.github/workflows/building-uploading.yml index ce0eb05..709599b 100644 --- a/.github/workflows/building-uploading.yml +++ b/.github/workflows/building-uploading.yml @@ -22,7 +22,7 @@ jobs: brew test-bot --only-formulae --skip-recursive-dependents --keep-old ${{github.event.inputs.formula}} - name: Upload bottles if: always() - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: bottles path: '*.bottle.*' @@ -35,7 +35,7 @@ jobs: - name: Set up git uses: Homebrew/actions/git-user-config@master - name: Download bottles - uses: actions/download-artifact@v2 + uses: actions/download-artifact@v3 with: name: bottles - name: Publish bottles