From 1beb53a3957f83fd628eb8bbc2dc00599dd72343 Mon Sep 17 00:00:00 2001 From: Colin Dellow Date: Thu, 12 Sep 2024 20:40:46 -0400 Subject: [PATCH] attempt to fix workflow failures GitHub has deprecated the v2 version of the upload-artifact action: https://github.blog/changelog/2024-02-13-deprecation-notice-v1-and-v2-of-the-artifact-actions/ I didn't actually read the release notes, I'm just YOLOing into v4 and hoping that works. If it still fails, I'll investigate more. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 20909c42..0c8aff91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: ${{ github.workspace }}\build\RelWithDebInfo\tilemaker.exe ${{ env.AREA }}.osm.pbf --config=resources/config-openmaptiles.json --process=resources/process-openmaptiles.lua --output=${{ env.AREA }}.mbtiles --store osm_store --verbose - name: 'Upload compiled executable' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: tilemaker-windows path: | @@ -90,7 +90,7 @@ jobs: ${{ github.workspace }}/build/${{ matrix.executable }} ${{ env.AREA }}.osm.pbf --config=resources/config-openmaptiles.json --process=resources/process-openmaptiles.lua --output=${{ env.AREA }}.mbtiles --verbose --store /tmp/store - name: 'Upload compiled executable' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: tilemaker-${{ matrix.os }} path: |