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.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ jobs:
starter-projects-changes: ${{ steps.filter.outputs.starter-projects-changes }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.branch || github.ref }}
- name: Filter Paths
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeflash.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
CODEFLASH_API_KEY: ${{ secrets.CODEFLASH_API_KEY }}
CODEFLASH_PR_NUMBER: ${{ github.event.number }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: astral-sh/setup-uv@v5
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

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

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- "3.13"
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: "Setup Environment"
uses: ./.github/actions/setup-uv
- name: Run benchmarks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy_gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- uses: actions/setup-node@v4
with:
node-version: 18
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
# exit 1
#
# - name: Check out the code at a specific ref
# uses: actions/checkout@v4
# uses: actions/checkout@v5
# with:
# ref: ${{ inputs.ref || inputs.main_version || github.ref }}
# persist-credentials: true
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
# needs: [get-version, setup]
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || inputs.main_version || github.ref }}
persist-credentials: true
Expand Down Expand Up @@ -252,7 +252,7 @@ jobs:
kozmoai_image: digitranslab/kozmoai:latest
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || inputs.main_version || github.ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-latest
name: Test docker images
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Build image
run: |
docker build -t digitranslab/kozmoai:latest-dev \
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.branch || github.ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fetch_docs_notion.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
run: echo "DATE=$(date +'%Y%m%d%H%M%S')" >> "$GITHUB_OUTPUT"

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

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
ASTRA_DB_APPLICATION_TOKEN: ${{ secrets.ASTRA_DB_APPLICATION_TOKEN }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || github.ref }}
- name: "Setup Environment"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/js_autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.branch || github.ref }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- "3.10"
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.branch || github.ref }}
persist-credentials: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
base_tag: ${{ steps.set_base_tag.outputs.base_tag }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
persist-credentials: true
- name: "Setup Environment"
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
# TODO: notify on failure

- name: Checkout main nightly tag
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ steps.generate_main_tag.outputs.main_tag }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/py_autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: Run Ruff Check and Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: "Setup Environment"
uses: ./.github/actions/setup-uv
- run: uv run ruff check --fix-only .
Expand All @@ -24,7 +24,7 @@ jobs:
name: Update Starter Projects
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: "Setup Environment"
uses: ./.github/actions/setup-uv

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
splitCount: [5]
group: [1, 2, 3, 4, 5]
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || github.ref }}
- name: Setup Node.js
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
matrix:
python-version: ${{ fromJson(inputs.python-versions || '["3.10", "3.11", "3.12"]' ) }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || github.ref }}
- name: Install uv
Expand Down Expand Up @@ -117,7 +117,7 @@ jobs:
python-version: ${{ fromJson(inputs.python-versions || '["3.10", "3.11", "3.12"]') }}
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || github.ref }}
- name: "Setup Environment"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
skipped: ${{ steps.check-version.outputs.skipped }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Environment
uses: ./.github/actions/setup-uv
- name: Install the project
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
version: ${{ steps.check-version.outputs.version }}
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Setup Environment
uses: ./.github/actions/setup-uv
- name: Install the project
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
version: ${{ steps.verify.outputs.version }}
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.nightly_tag_main }}
persist-credentials: true
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
shell: bash
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.nightly_tag_main}}
persist-credentials: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/store_pytest_durations.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
ASTRA_DB_APPLICATION_TOKEN: ${{ secrets.ASTRA_DB_APPLICATION_TOKEN }}
UV_CACHE_DIR: /tmp/.uv-cache
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/style-check-py.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- "3.12"
steps:
- name: Check out the code at a specific ref
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: "Setup Environment"
uses: ./.github/actions/setup-uv
- name: Register problem matcher
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/typescript_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
test_grep: ${{ steps.set-matrix.outputs.test_grep }}
suites: ${{ steps.set-matrix.outputs.suites }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || github.ref }}
fetch-depth: 0
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
failed: ${{ steps.check-failure.outputs.failed }}
steps:
- name: Checkout Repository
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
ref: ${{ inputs.ref || github.ref }}

Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:
fi
- name: Checkout code
if: ${{ steps.should_merge_reports.outputs.should_merge_reports == 'true' }}
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Setup Node.js

Expand Down
Loading