Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -148,7 +148,7 @@ jobs:
}

- name: clone repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: set docker build args and secrets
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-execute-workflow-dist.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
token: ${{ secrets.APIFY_SERVICE_ACCOUNT_GITHUB_TOKEN }}

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 @@ -139,7 +139,7 @@ jobs:
}

- name: clone repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: assume IAM role
if: inputs.useOIDC == false
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 @@ -118,7 +118,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- name: clone repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Send notification to slack
if: inputs.slackChannelId != ''
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-22.04-arm64
steps:
- name: clone repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- 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-22.04-arm64
steps:
- name: clone repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- 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-22.04-arm64
steps:
- name: clone repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- 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 @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-22.04-arm64
steps:
- name: checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: mark deploy - frontend
if: inputs.sentryEnvironmentFrontend != ''
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@v4
uses: actions/checkout@v6

# TODO: turn on caching
- name: setup Node.js
Expand Down
Loading