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
20 changes: 10 additions & 10 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
fetch-depth: 2
Expand Down Expand Up @@ -79,15 +79,15 @@ jobs:
brew install cmake

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: |
~/.cache/pip
~/Library/Caches/pip
key: ${{ runner.os }}-pip-conan-${{ env.CONAN_VERSION }}

- name: Cache Conan
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.conan2
key: ${{ runner.os }}-${{ matrix.arch }}-conan-${{ hashFiles('conanfile.txt') }}-v2
Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
fetch-depth: 2
Expand All @@ -181,13 +181,13 @@ jobs:
sudo apt-get install -y build-essential cmake

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-conan-${{ env.CONAN_VERSION }}

- name: Cache Conan
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.conan2
key: ${{ runner.os }}-wasm-conan-${{ hashFiles('conanfile.txt', 'wasm.profile') }}-v2
Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: recursive
fetch-depth: 2
Expand All @@ -252,13 +252,13 @@ jobs:
sudo apt-get install -y build-essential cmake lcov

- name: Cache pip
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-conan-${{ env.CONAN_VERSION }}

- name: Cache Conan
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: ~/.conan2
key: ${{ runner.os }}-x86_64-conan-coverage-${{ hashFiles('conanfile.txt') }}-v2
Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:

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

- name: Download Linux x86_64 artifacts
uses: actions/download-artifact@v8
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/security-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
submodules: false

Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:

steps:
- name: Checkout (for .trivyignore and .trivy-ignore-policy.rego)
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
sparse-checkout: |
.trivyignore
Expand Down
Loading