Skip to content

Commit

Permalink
chore(deps): update actions/checkout action to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate[bot] authored Oct 1, 2023
1 parent 3d5ec5b commit 7b45942
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_docker_image_and_push_to_ecr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ jobs:
}
- name: clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: set docker build args and secrets
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_cloudformation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_cloudformation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_gh_actions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: clone repository
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: lint
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint_helmfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release_marker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 != ''
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_repositories_for_licenses.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scan_repositories_for_secret_leaks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7b45942

Please sign in to comment.