From a1e157796274308a0c54af6ba67401d3d9456226 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Apr 2024 10:02:54 +0100 Subject: [PATCH] Bump actions/checkout from 2 to 4 (#794) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 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/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: John Wilkie <124276291+JBWilkie@users.noreply.github.com> --- .github/workflows/EVENT_release.yml | 6 +++--- .github/workflows/EVENT_tag.yml | 2 +- .github/workflows/EVENT_update-linear-labels.yml | 2 +- .github/workflows/JOB_e2e.yml | 2 +- .github/workflows/JOB_format.yml | 2 +- .github/workflows/JOB_generate_documentation.yml | 2 +- .github/workflows/JOB_get_changed_files.yml | 2 +- .github/workflows/JOB_lint.yml | 2 +- .github/workflows/JOB_tests.yml | 2 +- .github/workflows/JOB_typecheck.yml | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/EVENT_release.yml b/.github/workflows/EVENT_release.yml index 46e17ca04..7559735b3 100644 --- a/.github/workflows/EVENT_release.yml +++ b/.github/workflows/EVENT_release.yml @@ -32,7 +32,7 @@ jobs: validate_tag: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.ref }} @@ -52,7 +52,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/v') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.ref }} @@ -78,7 +78,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/test-') runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.ref }} diff --git a/.github/workflows/EVENT_tag.yml b/.github/workflows/EVENT_tag.yml index c1cefde67..40c03092c 100644 --- a/.github/workflows/EVENT_tag.yml +++ b/.github/workflows/EVENT_tag.yml @@ -19,7 +19,7 @@ jobs: name: Create Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 name: Checkout with: ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/EVENT_update-linear-labels.yml b/.github/workflows/EVENT_update-linear-labels.yml index 3e0056d3a..c4ddf724b 100644 --- a/.github/workflows/EVENT_update-linear-labels.yml +++ b/.github/workflows/EVENT_update-linear-labels.yml @@ -11,7 +11,7 @@ jobs: name: Update Linear runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: v7labs/update-linear-labels-action@v1 with: diff --git a/.github/workflows/JOB_e2e.yml b/.github/workflows/JOB_e2e.yml index fb69c3689..2f478a130 100644 --- a/.github/workflows/JOB_e2e.yml +++ b/.github/workflows/JOB_e2e.yml @@ -18,7 +18,7 @@ jobs: os: [ubuntu-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} diff --git a/.github/workflows/JOB_format.yml b/.github/workflows/JOB_format.yml index bccd6728f..da37ff022 100644 --- a/.github/workflows/JOB_format.yml +++ b/.github/workflows/JOB_format.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python environment uses: actions/setup-python@v5 diff --git a/.github/workflows/JOB_generate_documentation.yml b/.github/workflows/JOB_generate_documentation.yml index 01b511bb9..0c456f3c0 100644 --- a/.github/workflows/JOB_generate_documentation.yml +++ b/.github/workflows/JOB_generate_documentation.yml @@ -22,7 +22,7 @@ jobs: matrix: python-version: [3.8, 3.9, "3.10"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/JOB_get_changed_files.yml b/.github/workflows/JOB_get_changed_files.yml index 939d215d8..0b7018fd3 100644 --- a/.github/workflows/JOB_get_changed_files.yml +++ b/.github/workflows/JOB_get_changed_files.yml @@ -30,7 +30,7 @@ jobs: yaml_changed_files: ${{ steps.changed_yaml_files.outputs.yaml_changed_files }} json_changed_files: ${{ steps.changed_json_files.outputs.json_changed_files }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref || github.ref }} - name: Get changed files diff --git a/.github/workflows/JOB_lint.yml b/.github/workflows/JOB_lint.yml index 26c1cbf1e..4e65fa5bf 100644 --- a/.github/workflows/JOB_lint.yml +++ b/.github/workflows/JOB_lint.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python environment uses: actions/setup-python@v5 diff --git a/.github/workflows/JOB_tests.yml b/.github/workflows/JOB_tests.yml index 6a3e806a1..d98d52137 100644 --- a/.github/workflows/JOB_tests.yml +++ b/.github/workflows/JOB_tests.yml @@ -14,7 +14,7 @@ jobs: python-version: ["3.8", "3.9", "3.10", "3.11"] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref || github.ref }} diff --git a/.github/workflows/JOB_typecheck.yml b/.github/workflows/JOB_typecheck.yml index 647a2fd68..36978adf0 100644 --- a/.github/workflows/JOB_typecheck.yml +++ b/.github/workflows/JOB_typecheck.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out source repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Set up Python environment uses: actions/setup-python@v5