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
2 changes: 1 addition & 1 deletion .github/workflows/clang-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
fetch-depth: 0

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-tidy-review-post.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
steps:
- name: Post review comments
id: post-review
uses: ZedThree/clang-tidy-review/post@v0.21.0
uses: ZedThree/clang-tidy-review/post@v0.23.1
with:
max_comments: 10

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/clang-tidy-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:

steps:
- name: Checkout PR branch
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Python
uses: actions/setup-python@v6
uses: actions/setup-python@v7
with:
python-version: "3.11"

Expand All @@ -30,7 +30,7 @@ jobs:
version: "20"

- name: Run clang-tidy
uses: ZedThree/clang-tidy-review@v0.21.0
uses: ZedThree/clang-tidy-review@v0.23.1
id: review
with:
build_dir: build
Expand All @@ -53,4 +53,4 @@ jobs:
cmake . -B build -DCMAKE_C_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang" -DCMAKE_CXX_COMPILER="$GITHUB_WORKSPACE/llvm/bin/clang++" -DCMAKE_EXPORT_COMPILE_COMMANDS=On

- name: Upload artifacts
uses: ZedThree/clang-tidy-review/upload@v0.21.0
uses: ZedThree/clang-tidy-review/upload@v0.23.1
8 changes: 4 additions & 4 deletions .github/workflows/deploy-github-page.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
os: ubuntu-24.04

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: install mamba
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3
with:
environment-file: environment-wasm-build.yml
init-shell: bash
Expand Down Expand Up @@ -154,7 +154,7 @@ jobs:
--output-dir dist

- name: Upload artifact
uses: actions/upload-pages-artifact@v4
uses: actions/upload-pages-artifact@v5
with:
path: ./dist

Expand All @@ -173,4 +173,4 @@ jobs:
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
uses: actions/deploy-pages@v5
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
micromamba_shell_init: cmd.exe

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Backup in case setup-micromamba fails to cleanup when ci job fails on self hosted runner
if: ${{ runner.environment == 'self-hosted' }}
Expand All @@ -117,7 +117,7 @@ jobs:
rm -rf /root/micromamba-bin/micromamba || true

- name: install mamba
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3
with:
environment-file: environment-dev.yml
init-shell: >-
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

- name: Upload to codecov.io
if: ${{ success() && (matrix.coverage == true) }}
uses: codecov/codecov-action@v5
uses: codecov/codecov-action@v7
with:
files: ./coverage.info
fail_ci_if_error: true
Expand All @@ -263,10 +263,10 @@ jobs:
os: macos-15

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: install mamba
uses: mamba-org/setup-micromamba@v2
uses: mamba-org/setup-micromamba@v3
with:
environment-file: environment-wasm-build.yml
init-shell: bash
Expand Down
Loading