Skip to content
Merged
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
14 changes: 7 additions & 7 deletions .github/workflows/build-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
df -h

- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -200,9 +200,9 @@ jobs:
env:
PYTEST_XDIST_AUTO_NUM_WORKERS: 2

- name: SonarCloud Scan
- name: SonarQube Scan
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10' && !matrix.langchain_minimal && !matrix.pandas_v1 && !matrix.pydantic_v1 && (github.event.ref == 'refs/heads/main' || github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository) }}
uses: SonarSource/sonarcloud-github-action@v4.0.0
uses: SonarSource/sonarqube-scan-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
Expand Down Expand Up @@ -246,7 +246,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
Expand All @@ -270,7 +270,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
Expand All @@ -290,7 +290,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
with:
Expand Down Expand Up @@ -342,7 +342,7 @@ jobs:
df -h

- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clear-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Clear cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
echo "VERSION_NAME=${VERSION_NAME}" >> $GITHUB_ENV

- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
with:
fetch-tags: true
ref: main
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lock-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
id: extract_branch

- name: Checkout code
uses: actions/checkout@v4.1.0
uses: actions/checkout@v4
with:
token: ${{ secrets.RELEASE_PAT_TOKEN }} # Needed to trigger other actions
ref: ${{ steps.extract_branch.outputs.branch }}
Expand Down
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"gulp-concat": "^2.6.1",
"gulp-minify": "^3.1.0",
"gulp-postcss": "^10.0.0",
"postcss": "^8.5.1",
"postcss": "^8.5.2",
"postcss-import": "^16.1.0",
"tailwindcss": "^4.0.3",
"uglify": "^0.1.5"
Expand Down
Loading