From 0c3834bb46ccba94d513d56cd0fe2864db1cbc51 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 06:49:52 +0000 Subject: [PATCH] Build(deps): 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/deploy-cdk-dev.yml | 8 ++++---- .github/workflows/deploy-experimental.yml | 24 +++++++++++----------- .github/workflows/deploy.yml | 2 +- .github/workflows/git-secrets.yaml | 2 +- .github/workflows/load-regulations.yml | 2 +- .github/workflows/load-supp-content.yml | 2 +- .github/workflows/parser-checks.yml | 2 +- .github/workflows/pythonLint.yml | 2 +- .github/workflows/remove-experimental.yml | 2 +- .github/workflows/remove.yml | 2 +- .github/workflows/schedule-jira-sync.yml | 2 +- .github/workflows/snyk-test.yml | 4 ++-- .github/workflows/update-cdk-bootstrap.yml | 2 +- 13 files changed, 28 insertions(+), 28 deletions(-) diff --git a/.github/workflows/deploy-cdk-dev.yml b/.github/workflows/deploy-cdk-dev.yml index db79f8eb84..bd5fb6af98 100644 --- a/.github/workflows/deploy-cdk-dev.yml +++ b/.github/workflows/deploy-cdk-dev.yml @@ -24,7 +24,7 @@ jobs: name: ${{ matrix.environment }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Configure AWS credentials @@ -65,7 +65,7 @@ jobs: name: ${{ matrix.environment }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Configure AWS credentials @@ -104,7 +104,7 @@ jobs: name: ${{ matrix.environment }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true - name: Configure AWS credentials @@ -143,7 +143,7 @@ jobs: name: ${{ matrix.environment }} steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true diff --git a/.github/workflows/deploy-experimental.yml b/.github/workflows/deploy-experimental.yml index 202be18a6e..e8f1fba373 100644 --- a/.github/workflows/deploy-experimental.yml +++ b/.github/workflows/deploy-experimental.yml @@ -21,7 +21,7 @@ jobs: steps: # Checkout the code - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Find the PR number. This is not always trivial which is why this uses an existign action @@ -83,7 +83,7 @@ jobs: ENVIRONMENT_NAME: "dev" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -132,7 +132,7 @@ jobs: ENVIRONMENT_NAME: "dev" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -179,7 +179,7 @@ jobs: ENVIRONMENT_NAME: "dev" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -226,7 +226,7 @@ jobs: ENVIRONMENT_NAME: "dev" steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true @@ -283,7 +283,7 @@ jobs: # steps: # # Checkout the code # - name: Checkout - # uses: actions/checkout@v3 + # uses: actions/checkout@v4 # with: # submodules: true # # Find the PR number. This is not always trivial which is why this uses an existign action @@ -324,7 +324,7 @@ jobs: steps: # Checkout the code - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Find the PR number. This is not always trivial which is why this uses an existign action @@ -362,7 +362,7 @@ jobs: steps: # Checkout the code - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Find the PR number. This is not always trivial which is why this uses an existign action @@ -435,7 +435,7 @@ jobs: steps: # checkout the code - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # setup Python @@ -460,7 +460,7 @@ jobs: steps: # Checkout the code - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Find the PR number. This is not always trivial which is why this uses an existing action @@ -524,7 +524,7 @@ jobs: steps: # Checkout the code - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Find the PR number. This is not always trivial which is why this uses an existign action @@ -597,7 +597,7 @@ jobs: steps: # Checkout the code - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: submodules: true # Configure AWS credentials for GitHub Actions diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 1393b3c1ff..d39732e62e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -36,7 +36,7 @@ jobs: # needed because the postgres container does not provide a healthcheck options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true # should build first and save the artifact diff --git a/.github/workflows/git-secrets.yaml b/.github/workflows/git-secrets.yaml index 7bfab218fd..e3a9508dc0 100644 --- a/.github/workflows/git-secrets.yaml +++ b/.github/workflows/git-secrets.yaml @@ -4,7 +4,7 @@ jobs: gitleaks-scan: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Run gitlakes docker uses: docker://zricethezav/gitleaks with: diff --git a/.github/workflows/load-regulations.yml b/.github/workflows/load-regulations.yml index b496407cfe..04a0e8731d 100644 --- a/.github/workflows/load-regulations.yml +++ b/.github/workflows/load-regulations.yml @@ -21,7 +21,7 @@ jobs: name: ${{ matrix.environment }} runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: false - uses: actions/setup-node@v3 diff --git a/.github/workflows/load-supp-content.yml b/.github/workflows/load-supp-content.yml index 454d434429..6307eef140 100644 --- a/.github/workflows/load-supp-content.yml +++ b/.github/workflows/load-supp-content.yml @@ -21,7 +21,7 @@ jobs: name: ${{ github.event.inputs.env }} runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: false - name: Configure AWS credentials for GitHub Actions diff --git a/.github/workflows/parser-checks.yml b/.github/workflows/parser-checks.yml index 4f555b377d..eda25cd58f 100644 --- a/.github/workflows/parser-checks.yml +++ b/.github/workflows/parser-checks.yml @@ -23,7 +23,7 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 # Setup Go - name: Setup Go diff --git a/.github/workflows/pythonLint.yml b/.github/workflows/pythonLint.yml index bb248719f6..69bab51d6c 100644 --- a/.github/workflows/pythonLint.yml +++ b/.github/workflows/pythonLint.yml @@ -15,7 +15,7 @@ jobs: lint: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: diff --git a/.github/workflows/remove-experimental.yml b/.github/workflows/remove-experimental.yml index f2ce354043..e8e589d367 100644 --- a/.github/workflows/remove-experimental.yml +++ b/.github/workflows/remove-experimental.yml @@ -22,7 +22,7 @@ jobs: PR: ${{ github.event.number }} run: echo "Your PR is ${PR}" # Checkout the code - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true # Setup Node diff --git a/.github/workflows/remove.yml b/.github/workflows/remove.yml index b947665e78..5a23722b70 100644 --- a/.github/workflows/remove.yml +++ b/.github/workflows/remove.yml @@ -12,7 +12,7 @@ jobs: remove: runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: submodules: true - uses: actions/setup-node@v3 diff --git a/.github/workflows/schedule-jira-sync.yml b/.github/workflows/schedule-jira-sync.yml index 639694e156..33dc002cb6 100644 --- a/.github/workflows/schedule-jira-sync.yml +++ b/.github/workflows/schedule-jira-sync.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Check out repo - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure AWS credentials uses: aws-actions/configure-aws-credentials@v4 with: diff --git a/.github/workflows/snyk-test.yml b/.github/workflows/snyk-test.yml index 75cc08f138..a322d8d9ee 100644 --- a/.github/workflows/snyk-test.yml +++ b/.github/workflows/snyk-test.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Snyk and Run Snyk test run: | @@ -33,7 +33,7 @@ jobs: if: github.event_name == 'schedule' steps: - name: Check out repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Install Snyk and Run Snyk test run: | diff --git a/.github/workflows/update-cdk-bootstrap.yml b/.github/workflows/update-cdk-bootstrap.yml index 47d5d54b9f..0d4c15f9b6 100644 --- a/.github/workflows/update-cdk-bootstrap.yml +++ b/.github/workflows/update-cdk-bootstrap.yml @@ -23,7 +23,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Configure AWS credentials for GitHub Actions uses: aws-actions/configure-aws-credentials@v4