From 0fa5d6ddc88d899fb120b8ad53094d17c27caf26 Mon Sep 17 00:00:00 2001 From: Jimmy Christensen Date: Fri, 13 Dec 2024 17:42:13 +0100 Subject: [PATCH] Update all to actions/checkout@v4 (#1615) **Link the Issue(s) this Pull Request is related to.** #1613 **Summarize your change.** Update checkout action to actions/checkout@v4 --- .github/workflows/release-pipeline.yml | 6 +++--- .github/workflows/testing-pipeline.yml | 20 ++++++++++---------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/release-pipeline.yml b/.github/workflows/release-pipeline.yml index ac52bfa76..cc5259008 100644 --- a/.github/workflows/release-pipeline.yml +++ b/.github/workflows/release-pipeline.yml @@ -12,7 +12,7 @@ jobs: name: Preflight steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -45,7 +45,7 @@ jobs: name: Release ${{ matrix.component }} Docker image steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 @@ -89,7 +89,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 diff --git a/.github/workflows/testing-pipeline.yml b/.github/workflows/testing-pipeline.yml index 82f142fe8..a8a916fa1 100644 --- a/.github/workflows/testing-pipeline.yml +++ b/.github/workflows/testing-pipeline.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-22.04 container: aswf/ci-opencue:2023 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Python Tests run: ci/run_python_tests.sh @@ -22,7 +22,7 @@ jobs: container: image: aswf/ci-opencue:2023 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build with Gradle run: | chown -R aswfuser:aswfgroup . @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-22.04 container: aswf/ci-opencue:2024 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Python Tests run: ci/run_python_tests.sh @@ -43,7 +43,7 @@ jobs: container: image: aswf/ci-opencue:2024 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build with Gradle run: | chown -R aswfuser:aswfgroup . @@ -54,7 +54,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run test run: ci/run_integration_test.sh @@ -73,7 +73,7 @@ jobs: env: ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION: true steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Lint Python Code run: ci/run_python_lint.sh @@ -83,7 +83,7 @@ jobs: container: image: aswf/ci-opencue:2023 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run Sphinx build run: ci/build_sphinx_docs.sh @@ -91,7 +91,7 @@ jobs: name: Check Changed Files runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get Changed Files id: get_changed_files uses: tj-actions/changed-files@v41 @@ -102,7 +102,7 @@ jobs: name: Check Database Migration Files runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Check Migration Files run: ci/check_database_migrations.py @@ -110,7 +110,7 @@ jobs: name: Check for Version Bump runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Get Changed Files id: get_changed_files uses: tj-actions/changed-files@v41