Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
strategy:
fail-fast: false
matrix:
os: [windows-latest, windows-2019]

Check failure on line 18 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / Actionlint

label "windows-2019" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2025", "windows-2022", "windows-11-arm", "ubuntu-slim", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-24.04-arm", "ubuntu-22.04", "ubuntu-22.04-arm", "macos-latest", "macos-latest-xl", "macos-latest-xlarge", "macos-latest-large", "macos-26-xlarge", "macos-26", "macos-15-intel", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xl", "macos-14-xlarge", "macos-14-large", "macos-14", "macos-13-xl", "macos-13-xlarge", "macos-13-large", "macos-13", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build on ${{ matrix.os }} with vs-2019
run: |
.\scripts\win_build.bat
Expand All @@ -31,9 +31,9 @@
strategy:
fail-fast: false
matrix:
os: [windows-latest, windows-2019]

Check failure on line 34 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / Actionlint

label "windows-2019" is unknown. available labels are "windows-latest", "windows-latest-8-cores", "windows-2025", "windows-2022", "windows-11-arm", "ubuntu-slim", "ubuntu-latest", "ubuntu-latest-4-cores", "ubuntu-latest-8-cores", "ubuntu-latest-16-cores", "ubuntu-24.04", "ubuntu-24.04-arm", "ubuntu-22.04", "ubuntu-22.04-arm", "macos-latest", "macos-latest-xl", "macos-latest-xlarge", "macos-latest-large", "macos-26-xlarge", "macos-26", "macos-15-intel", "macos-15-xlarge", "macos-15-large", "macos-15", "macos-14-xl", "macos-14-xlarge", "macos-14-large", "macos-14", "macos-13-xl", "macos-13-xlarge", "macos-13-large", "macos-13", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Get dependencies w/ chocolatey
uses: crazy-max/ghaction-chocolatey@v3
with:
Expand Down Expand Up @@ -122,7 +122,7 @@
# Confirm CMake installation
/usr/local/bin/cmake --version

- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Run compilation
run: |
Expand All @@ -138,7 +138,7 @@
os: [ubuntu-latest]
compiler: [ gcc, clang ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build on ${{ matrix.os }} with ${{ matrix.compiler }}
uses: uraimo/run-on-arch-action@v3.0.1
with:
Expand Down Expand Up @@ -167,7 +167,7 @@
os: [ubuntu-latest, macos-latest]
compiler: [ gcc, clang ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build on ${{ matrix.os }} with ${{ matrix.compiler }}
run: |
echo "CC = $CC, CXX = $CXX"
Expand All @@ -193,10 +193,10 @@
contents: read
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: true
dependencies_debian: 'wget'

Check failure on line 199 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / Actionlint

input "dependencies_debian" is not defined in action "actions/checkout@v6". available inputs are "clean", "fetch-depth", "fetch-tags", "filter", "github-server-url", "lfs", "path", "persist-credentials", "ref", "repository", "set-safe-directory", "show-progress", "sparse-checkout", "sparse-checkout-cone-mode", "ssh-key", "ssh-known-hosts", "ssh-strict", "ssh-user", "submodules", "token"

- name: Install CMake 3.20.0
run: |
Expand All @@ -217,12 +217,12 @@
# Verify installation
/tmp/cmake/bin/cmake --version

- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
preset: ${{ matrix.preset }}

Check failure on line 222 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / Actionlint

input "preset" is not defined in action "actions/checkout@v6". available inputs are "clean", "fetch-depth", "fetch-tags", "filter", "github-server-url", "lfs", "path", "persist-credentials", "ref", "repository", "set-safe-directory", "show-progress", "sparse-checkout", "sparse-checkout-cone-mode", "ssh-key", "ssh-known-hosts", "ssh-strict", "ssh-user", "submodules", "token"

cmakeflags: '-DCFL_TESTS=On -DCFL_DEV=on .'

Check failure on line 224 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / Actionlint

input "cmakeflags" is not defined in action "actions/checkout@v6". available inputs are "clean", "fetch-depth", "fetch-tags", "filter", "github-server-url", "lfs", "path", "persist-credentials", "ref", "repository", "set-safe-directory", "show-progress", "sparse-checkout", "sparse-checkout-cone-mode", "ssh-key", "ssh-known-hosts", "ssh-strict", "ssh-user", "submodules", "token"
build_command: /tmp/cmake/bin/cmake && make all

Check failure on line 225 in .github/workflows/build.yaml

View workflow job for this annotation

GitHub Actions / Actionlint

input "build_command" is not defined in action "actions/checkout@v6". available inputs are "clean", "fetch-depth", "fetch-tags", "filter", "github-server-url", "lfs", "path", "persist-credentials", "ref", "repository", "set-safe-directory", "show-progress", "sparse-checkout", "sparse-checkout-cone-mode", "ssh-key", "ssh-known-hosts", "ssh-strict", "ssh-user", "submodules", "token"

# this job provides the single required status for PRs to be merged into main.
# instead of updating the protected branch status in github, developers can update the needs section below
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ludeeus/action-shellcheck@master
with:
ignore_paths: lib
Expand All @@ -21,7 +21,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- run: |
echo "::add-matcher::.github/actionlint-matcher.json"
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash)
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
format: [ rpm, deb ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: uraimo/run-on-arch-action@v3.0.1
name: Build the ${{matrix.format}} packages
with:
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:

runs-on: [ ubuntu-latest ]
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Build the ${{matrix.format}} packages
run: |
cmake .
Expand Down
Loading