Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update actions package dependencies #1428

Merged
merged 6 commits into from Feb 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/cmake.yml
Expand Up @@ -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++

Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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' }}
Expand All @@ -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)
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/configure.yml
Expand Up @@ -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

Expand Down Expand Up @@ -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: |
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fuzz.yml
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/link.yml
Expand Up @@ -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)
Expand Down Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nmake.yml
Expand Up @@ -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 }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pigz.yml
Expand Up @@ -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' }}
Expand All @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkgcheck.yml
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Expand Up @@ -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
Expand Down