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@v5

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

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

- 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@v5

- 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@v5

- 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@v5

- 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@v5

- name: install helmfile
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_bump_and_update_changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_docs_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout source code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Node
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_lint_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_type_check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python_unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
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@v5

- 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@v5

# TODO: turn on caching
- name: setup Node.js
Expand Down
2 changes: 1 addition & 1 deletion git-cliff-release/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ runs:
using: composite
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
fetch-depth: 0
path: ${{ github.workspace }}/__release_metadata_repo
Expand Down
2 changes: 1 addition & 1 deletion prepare-pypi-distribution/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
using: composite
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref }}

Expand Down
Loading