From 6c15430e0123e9518d9068614e0cf18c7927b0af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 8 Sep 2023 16:58:36 +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/codeql.yml | 2 +- .github/workflows/integration_test.yml | 10 +++++----- .github/workflows/update_compare_results.yml | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 75bad6b..f1e2a47 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -22,7 +22,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Initialize CodeQL uses: github/codeql-action/init@v2 diff --git a/.github/workflows/integration_test.yml b/.github/workflows/integration_test.yml index 251d80f..ea9b3f8 100644 --- a/.github/workflows/integration_test.yml +++ b/.github/workflows/integration_test.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Cloning pyglotaran-examples if: ${{ github.event.inputs.pyglotaran_examples_branch }} == "" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: pyglotaran-examples - name: Set example list output @@ -43,7 +43,7 @@ jobs: matrix: example_name: ${{fromJson(needs.create-example-list.outputs.example-list)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: "glotaran/pyglotaran" # If not provided (push and pull_request event) it uses the default branch @@ -58,7 +58,7 @@ jobs: pip install . - name: Cloning pyglotaran-examples if: ${{ github.event.inputs.pyglotaran_examples_branch }} == "" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: pyglotaran-examples - id: example-run @@ -85,7 +85,7 @@ jobs: needs: [run-examples] steps: - name: Checkout compare results - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "glotaran/pyglotaran-examples" ref: comparison-results @@ -124,7 +124,7 @@ jobs: needs: [compare-results] steps: - name: ⏬ Checkout compare results - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: repository: "glotaran/pyglotaran-examples" ref: comparison-results diff --git a/.github/workflows/update_compare_results.yml b/.github/workflows/update_compare_results.yml index 83a4dd1..e712879 100644 --- a/.github/workflows/update_compare_results.yml +++ b/.github/workflows/update_compare_results.yml @@ -34,7 +34,7 @@ jobs: matrix: example_name: ${{fromJson(needs.create-example-list.outputs.example-list)}} steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: "glotaran/pyglotaran" ref: ${{ github.event.inputs.pyglotaran_branch }} @@ -48,7 +48,7 @@ jobs: pip install . - name: Cloning pyglotaran-examples if: ${{ github.event.inputs.pyglotaran_examples_branch }} == "" - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: path: pyglotaran-examples - name: "Run Example: ${{ matrix.example_name }}" @@ -88,7 +88,7 @@ jobs: runs-on: ubuntu-latest needs: [run-examples] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: "glotaran/pyglotaran-examples" ref: "comparison-results"