chore(deps): bump the patch group with 3 updates #2468
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# yaml-language-server: $schema=https://json.schemastore.org/github-action.json | |
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
dependency-review: | |
runs-on: ubuntu-latest | |
if: ${{ github.event_name == 'pull_request' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/dependency-review-action@v4 | |
fmt: | |
name: ${{ matrix.runtime }} | |
strategy: | |
matrix: | |
os: ["ubuntu-latest", "windows-latest"] | |
runtime: ["common", "wasmedge", "wasmtime", "wasmer"] | |
uses: ./.github/workflows/action-fmt.yml | |
with: | |
os: ${{ matrix.os }} | |
runtime: ${{ matrix.runtime }} | |
test-image: | |
name: ${{ matrix.runtime }} | |
strategy: | |
matrix: | |
runtime: ["common"] # not required, but groups jobs | |
uses: ./.github/workflows/action-test-image.yml | |
test-image-oci: | |
name: ${{ matrix.runtime }} | |
strategy: | |
matrix: | |
runtime: ["common"] # not required, but groups jobs | |
uses: ./.github/workflows/action-test-image.yml | |
with: | |
image: img-oci | |
build-ubuntu: | |
name: ${{ matrix.runtime }} | |
permissions: | |
id-token: write | |
strategy: | |
matrix: | |
os: ["ubuntu-22.04"] | |
runtime: ["common", "wasmtime", "wasmedge", "wasmer"] | |
libc: ["musl", "gnu"] | |
arch: ["x86_64", "aarch64"] | |
uses: ./.github/workflows/action-build.yml | |
with: | |
os: ${{ matrix.os }} | |
runtime: ${{ matrix.runtime }} | |
target: "${{ matrix.arch }}-unknown-linux-${{ matrix.libc }}" | |
slug: "${{ matrix.arch }}-linux-${{ matrix.libc }}" | |
arch: ${{ matrix.arch }} | |
build-windows: | |
name: ${{ matrix.runtime }} | |
permissions: | |
id-token: write | |
strategy: | |
matrix: | |
os: ["windows-latest"] | |
runtime: ["common", "wasmtime", "wasmedge", "wasmer"] | |
uses: ./.github/workflows/action-build.yml | |
with: | |
os: ${{ matrix.os }} | |
runtime: ${{ matrix.runtime }} | |
slug: "windows" | |
smoke-tests: | |
name: ${{ matrix.runtime }} | |
needs: [build-ubuntu, test-image] | |
strategy: | |
matrix: | |
# 20.04 uses cgroupv1, 22.04 uses cgroupv2 | |
os: ["ubuntu-20.04", "ubuntu-22.04"] | |
runtime: ["wasmtime", "wasmedge", "wasmer"] | |
uses: ./.github/workflows/action-test-smoke.yml | |
with: | |
os: ${{ matrix.os }} | |
runtime: ${{ matrix.runtime }} | |
e2e-kind: | |
name: ${{ matrix.runtime }} | |
needs: [build-ubuntu, test-image] | |
strategy: | |
fail-fast: false | |
matrix: | |
# 20.04 uses cgroupv1, 22.04 uses cgroupv2 | |
os: ["ubuntu-20.04", "ubuntu-22.04"] | |
runtime: ["wasmtime", "wasmedge", "wasmer"] | |
uses: ./.github/workflows/action-test-kind.yml | |
with: | |
os: ${{ matrix.os }} | |
runtime: ${{ matrix.runtime }} | |
test-command: make test/k8s-${{ matrix.runtime }} | |
e2e-kind-oci: | |
name: ${{ matrix.runtime }} | |
needs: [build-ubuntu, test-image-oci] | |
strategy: | |
matrix: | |
os: ["ubuntu-22.04"] | |
runtime: ["wasmtime", "wasmedge", "wasmer"] | |
uses: ./.github/workflows/action-test-kind.yml | |
with: | |
os: ${{ matrix.os }} | |
runtime: ${{ matrix.runtime }} | |
image: img-oci | |
test-command: make test/k8s-oci-${{ matrix.runtime }} | |
e2e-k3s: | |
name: ${{ matrix.runtime }} | |
needs: [build-ubuntu, test-image] | |
strategy: | |
fail-fast: false | |
matrix: | |
os: ["ubuntu-20.04", "ubuntu-22.04"] | |
runtime: ["wasmtime", "wasmedge", "wasmer"] | |
uses: ./.github/workflows/action-test-k3s.yml | |
with: | |
os: ${{ matrix.os }} | |
runtime: ${{ matrix.runtime }} |