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/ci-cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
RELEASE_TYPE: ${{ needs.build_git-tag_and_create_github-release.outputs.github-action_reusable_workflow_release_version }}
DEBUG_MODE: false
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check it whether get the output of previous one job which has version info or not
run: bash scripts/ci/check_getting_output.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
matrix_github_action_reusable_workflow: ${{ steps.github_action_reusable_workflow_release.outputs.release_version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Need full history for tagging

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_checking_deployment_state.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
version_update_state: ${{ steps.checking_version_update_state.outputs.version_update_state }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Download all shell scripts for checking input parameters
working-directory: ${{ inputs.working-directory }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_docker_operations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ jobs:
image_ref: ${{ steps.image_meta.outputs.image_ref }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic
ref: ${{ inputs.checkout-sha != '' && inputs.checkout-sha || (github.event_name == 'push' && github.ref_name == 'master' && github.ref_name || '') }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rw_docusaurus_operations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
deploy_url: ${{ steps.preview.outputs.url }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_get_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.all_test_items }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Download shell script for getting path of all test modules
if: ${{ inputs.use_customized_shell != true }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rw_monorepo_release_orchestrator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
is_monorepo: ${{ steps.parse.outputs.is_monorepo }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Full history for change detection

Expand Down Expand Up @@ -165,7 +165,7 @@ jobs:
changed_count: ${{ steps.detect.outputs.changed_count }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_organize_test_cov_reports.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Full history for accurate coverage paths

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

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Install yq (YAML processor)
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_parse_release_intent.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
notes: ${{ steps.intent.outputs.notes }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_poetry_run_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ jobs:
test-path: ${{fromJson(inputs.all_test_items_paths)}}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Python ${{ inputs.python_version }}
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_pre-building_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Python ${{ inputs.run_with_python_version }} in Ubuntu OS
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_push_pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Python ${{ inputs.run_with_python_version }} in Ubuntu OS
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_python_package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
package_version: ${{ steps.version.outputs.version }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# Use specific SHA if provided (for post-version-bump code), otherwise use conditional ref logic
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/rw_release_complete.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
has_dockerfile: ${{ steps.check.outputs.has_dockerfile }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check for Dockerfile
id: check
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
any_docs_changed: ${{ steps.changes.outputs.docs == 'true' || steps.changes.outputs.dev == 'true' }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:
new_sha: ${{ steps.bump.outputs.new_sha }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# Only use ref for push events to master to get latest commit after version bump
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rw_release_staging_complete.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
has_dockerfile: ${{ steps.check.outputs.has_dockerfile }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check for Dockerfile
id: check
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
rc_version: ${{ steps.version.outputs.rc_version }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
# Only use ref for push events to master to get latest commit after version bump
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_release_validation_complete.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
has_dockerfile: ${{ steps.check.outputs.has_dockerfile }}
steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check for Dockerfile
id: check
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_run_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
test-path: ${{fromJson(inputs.all_test_items_paths)}}

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Python ${{ inputs.python_version }}
uses: actions/setup-python@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_sonarqube_scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
upload_test_cov_report:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_upload_test_cov_report.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Download shell script for checking input parameters
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rw_uv_run_test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ jobs:
has_coverage: ${{ steps.set_outputs.outputs.has_coverage }}
tests_skipped: ${{ steps.set_outputs.outputs.tests_skipped }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install uv
uses: astral-sh/setup-uv@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test_gh_reusable_workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
env:
RELEASE_TYPE: ${{ needs.test_build_git-tag_and_create_github-release.outputs.github-action_reusable_workflow_release_version }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check it whether get the output of previous one job which has version info or not
run: bash scripts/ci/check_getting_output.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
RELEASE_TYPE: ${{ needs.build_git-tag_and_create_github-release.outputs.python_release_version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check it whether get the output of previous one job which has version info or not
run: bash scripts/ci/check_getting_output.sh
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,7 @@ jobs:
RELEASE_TYPE: ${{ needs.build_git-tag_and_create_github-release.outputs.python_release_version }}
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check it whether get the output of previous one job which has version info or not
run: bash scripts/ci/check_getting_output.sh
Expand Down
Loading