diff --git a/.github/workflows/ci-docker.yml b/.github/workflows/ci-docker.yml index 5562df53ac..a46d6d4352 100644 --- a/.github/workflows/ci-docker.yml +++ b/.github/workflows/ci-docker.yml @@ -10,7 +10,7 @@ jobs: uses: actions/checkout@v3 - name: Test Action uses: ./util/ci/actions/archlinux-test - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 with: name: TestLog path: ${{ github.workspace }}/LastTest.log diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index e9f2f4412a..7ee3b03abe 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -33,7 +33,7 @@ jobs: ninja check env: CTEST_OUTPUT_ON_FAILURE: On - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: failure() with: name: TestLog diff --git a/.github/workflows/mac-tests.yaml b/.github/workflows/mac-tests.yaml index 6816a1ff71..527b01d185 100644 --- a/.github/workflows/mac-tests.yaml +++ b/.github/workflows/mac-tests.yaml @@ -15,13 +15,13 @@ jobs: echo "PREFIX=$HOME/gnucash/inst" >> $GITHUB_ENV echo "SRCROOT=$HOME/gnucash/source" >> $GITHUB_ENV - name: download dependency tarball - uses: carlosperate/download-file-action@v1.0.3 + uses: carlosperate/download-file-action@v2 id: dependencies with: file-url: 'https://downloads.sourceforge.net/gnucash/Dependencies/gnucash-4.900-mac-dependencies.tar.xz' file-name: gnucash-dependencies.tar.xz - name: download googletest - uses: carlosperate/download-file-action@v1.0.3 + uses: carlosperate/download-file-action@v2 id: googletest with: @@ -50,7 +50,7 @@ jobs: ninja check env: CTEST_OUTPUT_ON_FAILURE: On - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v3 if: failure() with: name: TestLog