Skip to content

Commit

Permalink
fix warnings: version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
leissa committed Dec 5, 2022
1 parent da4f40e commit 7290afe
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doxygen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Clone recursively
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,20 +15,20 @@ jobs:

steps:
- name: Clone recursively
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./llvm
key: llvm-14.0.0-ubuntu

- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1.5.2
uses: KyleMayes/install-llvm-action@v1.6.0
with:
version: "14.0.0"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Clone recursively
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand All @@ -30,14 +30,14 @@ jobs:

- name: Cache LLVM and Clang
id: cache-llvm
uses: actions/cache@v2
uses: actions/cache@v3
with:
path: |
./llvm
key: llvm-14.0.0-mac

- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1.5.2
uses: KyleMayes/install-llvm-action@v1.6.0
with:
version: "14.0.0"
cached: ${{ steps.cache-llvm.outputs.cache-hit }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Clone recursively
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: recursive

Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
cmake -B ${{github.workspace}}/build -G Ninja -DCMAKE_BUILD_TYPE=${{matrix.build-type}} -DTHORIN_BUILD_TESTING=ON -DPython3_ROOT_DIR=%PYTHON_PATH%
- name: Install LLVM and Clang
uses: KyleMayes/install-llvm-action@v1.5.3
uses: KyleMayes/install-llvm-action@v1.6.0
with:
version: "14.0.0"

Expand Down

0 comments on commit 7290afe

Please sign in to comment.