diff options
author | Alon Zakai <azakai@google.com> | 2024-09-04 12:32:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-04 12:32:23 -0700 |
commit | 9671b985aca3ce8ee18e7886229ba03c02e73fac (patch) | |
tree | b6e5379d006aa8b4980dd1aba76ba1a82cf68fb4 /.github/workflows | |
parent | b2677842ae489835e5ce842c997ccacba79a2fb2 (diff) | |
download | binaryen-9671b985aca3ce8ee18e7886229ba03c02e73fac.tar.gz binaryen-9671b985aca3ce8ee18e7886229ba03c02e73fac.tar.bz2 binaryen-9671b985aca3ce8ee18e7886229ba03c02e73fac.zip |
[CI] Fix GitHub error due to deprecated artifact uploading v1 (#6900)
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ef8317034..01b125a7a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -102,7 +102,7 @@ jobs: if: matrix.os != 'windows-latest' - name: Upload artifacts - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v4 with: name: build-${{ matrix.os }} path: out/install |