Skip to content

Commit

Permalink
[CI] update actions/{checkout,cache,setup-python}
Browse files Browse the repository at this point in the history
  • Loading branch information
tttapa committed Nov 29, 2022
1 parent 8504554 commit c0f9eda
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ jobs:

steps:
# Checks-out the repository under $GITHUB_WORKSPACE
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# Cache the doxygen executable, lcov
- uses: actions/cache@v2
- uses: actions/cache@v3
id: cache-tools
with:
path: |
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:
VIRTUAL_ENV: /tmp/gtest

# Install Python
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9.6'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
float: ['-DLADEL_SINGLE_PRECISION=On',
'-DLADEL_SINGLE_PRECISION=Off']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Google Test
shell: bash
run: ./scripts/install-gtest.sh Debug
Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
float: ['-DLADEL_SINGLE_PRECISION=On',
'-DLADEL_SINGLE_PRECISION=Off']
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Google Test
shell: powershell
run: ./scripts/install-gtest.ps1 Debug
Expand Down

0 comments on commit c0f9eda

Please sign in to comment.