From 52e3f1ad3b06e343231534e9992fb9e965ffcc22 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 28 Sep 2024 04:13:05 +0000 Subject: [PATCH] ci: bump actions/checkout from 4.1.7 to 4.2.0 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.7 to 4.2.0. - [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/v4.1.7...v4.2.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/dependencies-diff.yml | 2 +- .github/workflows/deploy.yml | 2 +- .github/workflows/integration-tests-h2.yml | 2 +- .github/workflows/integration-tests-mysql.yml | 2 +- .github/workflows/integration-tests-postgres.yml | 2 +- .github/workflows/populate-maven-cache.yml | 2 +- .github/workflows/provision-by-ansible.yml | 2 +- .github/workflows/provision-by-terraform.yml | 4 ++-- .github/workflows/static-analysis.yml | 4 ++-- .github/workflows/todos-extract-from-code.yml | 2 +- .github/workflows/todos-handle-issue-changes.yml | 2 +- .github/workflows/unit-tests.yml | 4 ++-- 12 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/dependencies-diff.yml b/.github/workflows/dependencies-diff.yml index 9092f6d76..8992613d1 100644 --- a/.github/workflows/dependencies-diff.yml +++ b/.github/workflows/dependencies-diff.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 414f0a665..7a3027935 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,7 +26,7 @@ jobs: steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/integration-tests-h2.yml b/.github/workflows/integration-tests-h2.yml index 313a4f9c0..5b506cdcb 100644 --- a/.github/workflows/integration-tests-h2.yml +++ b/.github/workflows/integration-tests-h2.yml @@ -36,7 +36,7 @@ jobs: continue-on-error: ${{ matrix.allow-failure }} steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/integration-tests-mysql.yml b/.github/workflows/integration-tests-mysql.yml index 0c199373b..7d1c3c588 100644 --- a/.github/workflows/integration-tests-mysql.yml +++ b/.github/workflows/integration-tests-mysql.yml @@ -48,7 +48,7 @@ jobs: - '3306:3306' steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/integration-tests-postgres.yml b/.github/workflows/integration-tests-postgres.yml index 2b9626f27..a7dde986a 100644 --- a/.github/workflows/integration-tests-postgres.yml +++ b/.github/workflows/integration-tests-postgres.yml @@ -39,7 +39,7 @@ jobs: - '5432:5432' steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/populate-maven-cache.yml b/.github/workflows/populate-maven-cache.yml index 38d3f8a00..f7801a3c0 100644 --- a/.github/workflows/populate-maven-cache.yml +++ b/.github/workflows/populate-maven-cache.yml @@ -31,7 +31,7 @@ jobs: steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/provision-by-ansible.yml b/.github/workflows/provision-by-ansible.yml index fdde2a839..57df8c658 100644 --- a/.github/workflows/provision-by-ansible.yml +++ b/.github/workflows/provision-by-ansible.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/provision-by-terraform.yml b/.github/workflows/provision-by-terraform.yml index 13a474d08..4dab3a2e3 100644 --- a/.github/workflows/provision-by-terraform.yml +++ b/.github/workflows/provision-by-terraform.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false @@ -36,7 +36,7 @@ jobs: # https://github.com/tfutils/tfenv#manual - name: Install tfenv - uses: actions/checkout@v4.1.7 + uses: actions/checkout@v4.2.0 with: # https://github.com/actions/checkout#checkout-multiple-repos-nested repository: tfutils/tfenv diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 506745b81..86386ce84 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -22,7 +22,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false @@ -47,7 +47,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false diff --git a/.github/workflows/todos-extract-from-code.yml b/.github/workflows/todos-extract-from-code.yml index 94d6d923f..0125ea305 100644 --- a/.github/workflows/todos-extract-from-code.yml +++ b/.github/workflows/todos-extract-from-code.yml @@ -32,7 +32,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: true diff --git a/.github/workflows/todos-handle-issue-changes.yml b/.github/workflows/todos-handle-issue-changes.yml index 44beae4a2..27d4f263a 100644 --- a/.github/workflows/todos-handle-issue-changes.yml +++ b/.github/workflows/todos-handle-issue-changes.yml @@ -26,7 +26,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: true diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index 134a62a41..54f81159d 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-20.04 steps: - name: Clone source code - uses: actions/checkout@v4.1.7 # https://github.com/actions/checkout + uses: actions/checkout@v4.2.0 # https://github.com/actions/checkout with: # Whether to configure the token or SSH key with the local git config. Default: true persist-credentials: false