diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2022-11-14 21:40:40 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2022-11-28 23:29:49 -0500 |
commit | 1a6a014494785e107023b25c157b30c3a4838b99 (patch) | |
tree | 03c72f0773600c5206ff92a77c054f63d09c917d | |
parent | 01c82058644dbe25dda84761e4a52e41206d5ade (diff) | |
download | meson-1a6a014494785e107023b25c157b30c3a4838b99.zip meson-1a6a014494785e107023b25c157b30c3a4838b99.tar.gz meson-1a6a014494785e107023b25c157b30c3a4838b99.tar.bz2 |
github workflows: upgrade actions/upload-artifact to version 3
This is a no-op change from v2 to v3, but github complains that nodejs
is outdated if you don't. It's not obvious why this required a major
version bump...
However, half of our uses are on v1, which has a decent fix: failure to
upload artifacts constitutes a step failure.
-rw-r--r-- | .github/workflows/cygwin.yml | 2 | ||||
-rw-r--r-- | .github/workflows/macos.yml | 4 | ||||
-rw-r--r-- | .github/workflows/msys2.yml | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/cygwin.yml b/.github/workflows/cygwin.yml index 36ddb68..d95c7b3 100644 --- a/.github/workflows/cygwin.yml +++ b/.github/workflows/cygwin.yml @@ -93,7 +93,7 @@ jobs: SKIP_STATIC_BOOST: 1 shell: C:\cygwin\bin\bash.exe --noprofile --norc -o igncr -eo pipefail '{0}' - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: ${{ matrix.NAME }} path: meson-test-run.* diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index a7f9f63..66e84be 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -113,13 +113,13 @@ jobs: - run: ln -sfn /usr/local/Cellar/qt@4/4.8.7_6.reinstall /usr/local/Cellar/qt@4/4.8.7_6 - run: meson setup "test cases/frameworks/4 qt" build -Drequired=qt4 - run: meson compile -C build - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v3 if: failure() with: name: Qt4_Mac_build path: build/meson-logs/meson-log.txt - run: meson test -C build -v - - uses: actions/upload-artifact@v1 + - uses: actions/upload-artifact@v3 if: failure() with: name: Qt4_Mac_test diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml index fd60254..4f05983 100644 --- a/.github/workflows/msys2.yml +++ b/.github/workflows/msys2.yml @@ -124,7 +124,7 @@ jobs: MSYSTEM= python3 ./tools/run_with_cov.py run_tests.py --backend=ninja - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: ${{ matrix.NAME }} path: meson-test-run.* |