diff --git a/.github/workflows/build_docker_image_and_push_to_ecr.yaml b/.github/workflows/build_docker_image_and_push_to_ecr.yaml index fa24e1f..afbc2b4 100644 --- a/.github/workflows/build_docker_image_and_push_to_ecr.yaml +++ b/.github/workflows/build_docker_image_and_push_to_ecr.yaml @@ -124,7 +124,7 @@ jobs: } - name: clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: set docker build args and secrets run: | diff --git a/.github/workflows/deploy_cloudformation.yaml b/.github/workflows/deploy_cloudformation.yaml index be9a7f1..0c65c75 100644 --- a/.github/workflows/deploy_cloudformation.yaml +++ b/.github/workflows/deploy_cloudformation.yaml @@ -121,7 +121,7 @@ jobs: } - name: clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: assume IAM role uses: aws-actions/configure-aws-credentials@v4 diff --git a/.github/workflows/deploy_helmfile.yaml b/.github/workflows/deploy_helmfile.yaml index 8e68b50..81509ff 100644 --- a/.github/workflows/deploy_helmfile.yaml +++ b/.github/workflows/deploy_helmfile.yaml @@ -120,7 +120,7 @@ jobs: } - name: clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # There is no public action that would give us the abilities we need. Meaning: # - helmfile diff --git a/.github/workflows/lint_cloudformation.yaml b/.github/workflows/lint_cloudformation.yaml index 34573e3..37fabfd 100644 --- a/.github/workflows/lint_cloudformation.yaml +++ b/.github/workflows/lint_cloudformation.yaml @@ -24,7 +24,7 @@ jobs: runs-on: ubuntu-latest steps: - name: clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: install cfn-lint run: pip install cfn-lint==${CFN_LINT_VERSION} diff --git a/.github/workflows/lint_gh_actions.yaml b/.github/workflows/lint_gh_actions.yaml index 28e1ab7..3376b7d 100644 --- a/.github/workflows/lint_gh_actions.yaml +++ b/.github/workflows/lint_gh_actions.yaml @@ -17,7 +17,7 @@ jobs: runs-on: ubuntu-latest steps: - name: clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: lint run: | diff --git a/.github/workflows/lint_helmfile.yaml b/.github/workflows/lint_helmfile.yaml index f05f364..6def6b6 100644 --- a/.github/workflows/lint_helmfile.yaml +++ b/.github/workflows/lint_helmfile.yaml @@ -33,7 +33,7 @@ jobs: runs-on: ubuntu-latest steps: - name: clone repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: install helmfile run: | diff --git a/.github/workflows/release_marker.yaml b/.github/workflows/release_marker.yaml index 7ae0e24..b34184c 100644 --- a/.github/workflows/release_marker.yaml +++ b/.github/workflows/release_marker.yaml @@ -70,7 +70,7 @@ jobs: runs-on: ubuntu-latest steps: - name: checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: mark deploy - frontend if: inputs.sentryEnvironmentFrontend != '' diff --git a/.github/workflows/scan_repositories_for_licenses.yaml b/.github/workflows/scan_repositories_for_licenses.yaml index 4848e61..9c0c598 100644 --- a/.github/workflows/scan_repositories_for_licenses.yaml +++ b/.github/workflows/scan_repositories_for_licenses.yaml @@ -12,7 +12,7 @@ jobs: - apify/apify-core name: Scan and report steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ matrix.repositories }} token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} diff --git a/.github/workflows/scan_repositories_for_secret_leaks.yaml b/.github/workflows/scan_repositories_for_secret_leaks.yaml index 7b2fcd5..af828de 100644 --- a/.github/workflows/scan_repositories_for_secret_leaks.yaml +++ b/.github/workflows/scan_repositories_for_secret_leaks.yaml @@ -22,7 +22,7 @@ jobs: - apify/apify-status-page-tests name: Scan and report steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: repository: ${{ matrix.repositories }} token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }} diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 3055b07..4bfa3a2 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -115,7 +115,7 @@ jobs: } - name: clone local repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 # TODO: turn on caching - name: setup Node.js