Skip to content

Commit

Permalink
Update GitHub actions versions used for CI
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardmgruber committed Nov 4, 2022
1 parent 28b0aed commit 26558e8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@ jobs:
clang-format:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: DoozyX/clang-format-lint-action@v0.14
with:
exclude: './thirdparty'
extensions: 'cpp,hpp,h,cu'
clangFormatVersion: 14
inplace: True
- uses: EndBug/add-and-commit@v4
- uses: EndBug/add-and-commit@v9
with:
author_name: Third Party
author_email: llama@hzdr.de
Expand All @@ -39,7 +39,7 @@ jobs:
env:
CXX: clang++-14
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install clang-14
run: |
sudo apt install clang-14 libomp-14-dev clang-tidy-14
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
env:
CXX: g++
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: install lcov
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
needs: clang-format
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: create-single-header.sh
run: |
./tools/create-single-header.sh
Expand Down Expand Up @@ -192,7 +192,7 @@ jobs:
install_extra: nvhpc-22-9

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: add ubuntu toolchain repo
if: matrix.add_toolchain_ppa
run: |
Expand Down Expand Up @@ -292,7 +292,7 @@ jobs:
shell: bash

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: vcpkg install dependencies
run: |
eval $VCPKG_INSTALL
Expand Down Expand Up @@ -321,7 +321,7 @@ jobs:
- os: macos-11
- os: macos-12
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: brew install dependencies
run: |
brew install llvm libomp
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
gh-pages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install doxygen
run: |
sudo apt-get -y --quiet install --no-install-recommends doxygen graphviz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/single-header.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
single-header:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: clone single-header
run: |
git clone -b single-header https://x-access-token:${{secrets.github_token}}@github.com/${{github.repository}}.git single-header
Expand Down

0 comments on commit 26558e8

Please sign in to comment.