diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml index 11ed5311a1..1d0eeeb246 100644 --- a/.github/workflows/cmake.yml +++ b/.github/workflows/cmake.yml @@ -12,8 +12,8 @@ jobs: fail-fast: false matrix: include: - - name: Ubuntu 18.04 GCC - os: ubuntu-18.04 + - name: Ubuntu 20.04 GCC + os: ubuntu-20.04 compiler: gcc cxx-compiler: g++ @@ -281,8 +281,8 @@ jobs: # Limit parallel test jobs to prevent wine errors parallels-jobs: 1 - - name: Ubuntu 18.04 Clang - os: ubuntu-18.04 + - name: Ubuntu 20.04 Clang + os: ubuntu-20.04 compiler: clang-6.0 cxx-compiler: clang++-6.0 packages: clang-6.0 @@ -482,7 +482,7 @@ jobs: - name: Install Emscripten if: contains(matrix.name, 'WASM32') - uses: mymindstorm/setup-emsdk@v11 + uses: mymindstorm/setup-emsdk@v12 - name: Initialize Wine # Prevent parallel test jobs from initializing Wine at the same time @@ -548,7 +548,7 @@ jobs: --xml --output coverage.xml - name: Upload coverage report - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 if: matrix.codecov && (env.CODECOV_TOKEN != '' || github.repository == 'zlib-ng/zlib-ng') with: token: ${{ secrets.CODECOV_TOKEN || 'e4fdf847-f541-4ab1-9d50-3d27e5913906' }} @@ -561,7 +561,7 @@ jobs: CODECOV_TOKEN: "${{secrets.CODECOV_TOKEN}}" - name: Upload build errors - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: ${{ matrix.name }} (cmake) diff --git a/.github/workflows/configure.yml b/.github/workflows/configure.yml index c2927f73b3..e0dde6f9be 100644 --- a/.github/workflows/configure.yml +++ b/.github/workflows/configure.yml @@ -13,8 +13,8 @@ jobs: compiler: gcc configure-args: --warn - - name: Ubuntu 18.04 GCC - os: ubuntu-18.04 + - name: Ubuntu 20.04 GCC + os: ubuntu-20.04 compiler: gcc configure-args: --warn @@ -196,7 +196,7 @@ jobs: - name: Install Emscripten if: contains(matrix.name, 'WASM32') - uses: mymindstorm/setup-emsdk@v11 + uses: mymindstorm/setup-emsdk@v12 - name: Generate project files run: | @@ -220,7 +220,7 @@ jobs: working-directory: ${{ matrix.build-dir }} - name: Upload build errors - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: ${{ matrix.name }} (configure) diff --git a/.github/workflows/fuzz.yml b/.github/workflows/fuzz.yml index b108461033..95d64e67ae 100644 --- a/.github/workflows/fuzz.yml +++ b/.github/workflows/fuzz.yml @@ -29,7 +29,7 @@ jobs: dry-run: false - name: Upload Crash - uses: actions/upload-artifact@v1 + uses: actions/upload-artifact@v3 if: failure() with: name: artifacts diff --git a/.github/workflows/link.yml b/.github/workflows/link.yml index 0ac4f5cff4..918720f517 100644 --- a/.github/workflows/link.yml +++ b/.github/workflows/link.yml @@ -27,7 +27,7 @@ jobs: run: cmake --build native --config Release - name: Upload build errors - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: Link zlib (CMake Logs) @@ -56,7 +56,7 @@ jobs: run: cmake --build native --config Release - name: Upload build errors - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: Link zlib-ng compat (CMake Logs) diff --git a/.github/workflows/nmake.yml b/.github/workflows/nmake.yml index f8c61af009..38e6690933 100644 --- a/.github/workflows/nmake.yml +++ b/.github/workflows/nmake.yml @@ -51,7 +51,7 @@ jobs: uses: actions/checkout@v3 - name: Setup development environment - uses: ilammy/msvc-dev-cmd@v1.10.0 + uses: ilammy/msvc-dev-cmd@v1.12.1 with: arch: ${{ matrix.arch }} diff --git a/.github/workflows/pigz.yml b/.github/workflows/pigz.yml index 4400892440..6a505a119e 100644 --- a/.github/workflows/pigz.yml +++ b/.github/workflows/pigz.yml @@ -99,7 +99,7 @@ jobs: --xml --output coverage.xml - name: Upload coverage report - uses: codecov/codecov-action@v2 + uses: codecov/codecov-action@v3 if: matrix.codecov && (env.CODECOV_TOKEN != '' || github.repository == 'zlib-ng/zlib-ng') with: token: ${{ secrets.CODECOV_TOKEN || 'e4fdf847-f541-4ab1-9d50-3d27e5913906' }} @@ -111,7 +111,7 @@ jobs: CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}} - name: Upload build errors - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: ${{ matrix.name }} (cmake) diff --git a/.github/workflows/pkgcheck.yml b/.github/workflows/pkgcheck.yml index 180c2433ba..0bb97fd843 100644 --- a/.github/workflows/pkgcheck.yml +++ b/.github/workflows/pkgcheck.yml @@ -153,7 +153,7 @@ jobs: LDFLAGS: ${{ matrix.ldflags }} - name: Upload build errors - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 if: failure() with: name: ${{ matrix.name }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2a3327b479..768cf48bcb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -88,7 +88,7 @@ jobs: working-directory: out - name: Upload release (Windows) - uses: svenstaro/upload-release-action@v1-release + uses: svenstaro/upload-release-action@v2 if: runner.os == 'Windows' with: asset_name: zlib-ng-${{ matrix.deploy-name }}.zip