From 846abd706162d08a291d1f4be54e46559092926f Mon Sep 17 00:00:00 2001 From: jasquat Date: Fri, 24 Feb 2023 14:14:17 -0500 Subject: [PATCH] updated actions checkout to remove deprecations warnings w/ burnettk --- .github/workflows/backend_tests.yml | 10 +++++----- .github/workflows/release_builds.yml | 6 +++--- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/backend_tests.yml b/.github/workflows/backend_tests.yml index 11725f7ce..12e503345 100644 --- a/.github/workflows/backend_tests.yml +++ b/.github/workflows/backend_tests.yml @@ -87,7 +87,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 - name: Set up Python ${{ matrix.python }} uses: actions/setup-python@v4.2.0 @@ -167,7 +167,7 @@ jobs: working-directory: . steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 with: # Disabling shallow clone is recommended for improving relevancy of reporting in sonarcloud fetch-depth: 0 @@ -188,7 +188,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 with: # Disabling shallow clone is recommended for improving relevancy of reporting in sonarcloud fetch-depth: 0 @@ -210,7 +210,7 @@ jobs: needs: [tests, run_pre_commit_checks, check_docker_start_script] steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 with: # Disabling shallow clone is recommended for improving relevancy of reporting in sonarcloud fetch-depth: 0 @@ -296,7 +296,7 @@ jobs: steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 with: # Disabling shallow clone is recommended for improving relevancy of reporting in sonarcloud fetch-depth: 0 diff --git a/.github/workflows/release_builds.yml b/.github/workflows/release_builds.yml index 31fd3447e..e1befe8ec 100644 --- a/.github/workflows/release_builds.yml +++ b/.github/workflows/release_builds.yml @@ -15,7 +15,7 @@ jobs: packages: write steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 - name: Log in to the Container registry uses: docker/login-action@v2.1.0 with: @@ -48,7 +48,7 @@ jobs: packages: write steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 - name: Log in to the Container registry uses: docker/login-action@v2.1.0 with: @@ -82,7 +82,7 @@ jobs: packages: write steps: - name: Check out the repository - uses: actions/checkout@v3.0.2 + uses: actions/checkout@v3.3.0 - name: Log in to the Container registry uses: docker/login-action@v2.1.0 with: