diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index 62d30a4..94b68f6 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -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: | @@ -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' diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dbd562f..2aeacf3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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 @@ -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