From 4d8ad72d4570b1da8020178888f43e57cef921b5 Mon Sep 17 00:00:00 2001 From: Justin Carpentier <justin.carpentier@inria.fr> Date: Fri, 27 Jan 2023 14:15:56 +0100 Subject: [PATCH] ci: update to latest actions --- .github/workflows/jrl-cmakemodules.yml | 4 ++-- .github/workflows/macos-linux-conda.yml | 4 ++-- .github/workflows/windows-conda.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/jrl-cmakemodules.yml b/.github/workflows/jrl-cmakemodules.yml index 4928c9c2..563bf3d7 100644 --- a/.github/workflows/jrl-cmakemodules.yml +++ b/.github/workflows/jrl-cmakemodules.yml @@ -6,7 +6,7 @@ jobs: name: Check configuration with git submodules runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: true - run: sudo apt install libboost-all-dev libeigen3-dev python3-numpy @@ -17,7 +17,7 @@ jobs: name: Check configuration without git submodules runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: false - run: sudo apt install libboost-all-dev libeigen3-dev python3-numpy diff --git a/.github/workflows/macos-linux-conda.yml b/.github/workflows/macos-linux-conda.yml index 2d6f9659..01fd930c 100644 --- a/.github/workflows/macos-linux-conda.yml +++ b/.github/workflows/macos-linux-conda.yml @@ -26,7 +26,7 @@ jobs: os: macos-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: recursive @@ -37,7 +37,7 @@ jobs: environment-file: .github/workflows/conda/environment.yml python-version: '3.10' - - uses: actions/cache@v2 + - uses: actions/cache@v3 with: path: ${{ env.CCACHE_DIR }} key: ccache-${{ matrix.os }}-${{ matrix.build_type }}-${{ matrix.cxx_options }} diff --git a/.github/workflows/windows-conda.yml b/.github/workflows/windows-conda.yml index b25a078e..aef42b10 100644 --- a/.github/workflows/windows-conda.yml +++ b/.github/workflows/windows-conda.yml @@ -9,7 +9,7 @@ jobs: matrix: os: [windows-latest] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Checkout submodules run: | git submodule update --init -- GitLab