From 8b764a0e3273ad751583c5dcc466f5eebaeaf957 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 10:07:23 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/doc.yml | 2 +- .github/workflows/main.yml | 10 +++++----- .github/workflows/wasm.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index a66842928c..96ced42dc5 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -7,7 +7,7 @@ jobs: all: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Generate doxygen uses: mattnotmitt/doxygen-action@v1 - name: Deploy to github pages diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 7b6786cedc..70d4abad28 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,7 +12,7 @@ jobs: - name: work around permission issue run: git config --global --add safe.directory /__w/quisp/quisp - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: make eigen run: make eigen - name: generate makefile @@ -43,7 +43,7 @@ jobs: - name: work around permission issue run: git config --global --add safe.directory /__w/quisp/quisp - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install python dependencies for simulation tests run: pip install -r requirements.txt - name: doctest for simulation test utils @@ -65,7 +65,7 @@ jobs: - name: work around permission issue run: git config --global --add safe.directory /__w/quisp/quisp - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: make eigen run: make eigen - name: generate makefile @@ -87,7 +87,7 @@ jobs: - name: work around permission issue run: git config --global --add safe.directory /__w/quisp/quisp - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: make eigen run: make eigen - name: generate makefile @@ -109,7 +109,7 @@ jobs: - name: work around permission issue run: git config --global --add safe.directory /__w/quisp/quisp - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: generate makefile run: make makefile-lib - name: generate message headers diff --git a/.github/workflows/wasm.yml b/.github/workflows/wasm.yml index 0068ffc763..5d484e6a34 100644 --- a/.github/workflows/wasm.yml +++ b/.github/workflows/wasm.yml @@ -7,7 +7,7 @@ jobs: - name: work around permission issue run: git config --global --add safe.directory /__w/quisp/quisp - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: wasm build @@ -27,7 +27,7 @@ jobs: runs-on: ubuntu-latest if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') || startsWith(github.ref, 'refs/heads/demo-')) }} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: 'sfc-aqua/quisp-online' - uses: actions/download-artifact@v3