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
4 changes: 3 additions & 1 deletion .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,14 @@ on:
- edited
- reopened

permissions: {}

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number }}
cancel-in-progress: true

jobs:
pr-title-check:
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@3.2.0
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@4.0.0
secrets:
ACTIONS_BOT_TOKEN: ${{ secrets.ACTIONS_BOT_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ concurrency:

jobs:
run_tests:
uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@3.2.0
uses: epam/ai-dial-ci/.github/workflows/python_package_pr.yml@4.0.0
secrets: inherit
with:
python-version: "3.10"
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@ name: Release Workflow
on:
push:
branches: [development, release-*]
workflow_dispatch:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
release:
uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@3.2.0
secrets: inherit
uses: epam/ai-dial-ci/.github/workflows/python_package_release.yml@4.0.0
with:
promote: true # HACK: skip RC phase, project does not require stabilization period before releasing stable versions
python-version: "3.10"
poetry-version: "2.3.2"
code-checks-python-versions: '["3.10", "3.11", "3.12", "3.13"]'
secrets: inherit
1 change: 1 addition & 0 deletions .github/workflows/slash-command-dispatch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ jobs:
[
{
"command": "deploy-review",
"permission": "write",
"issue_type": "pull-request",
"repository": "epam/ai-dial-ci",
"static_args": [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "aidial-client"
version = "0.7.0rc"
version = "0.0.0"
description = "A Python client library for the AI DIAL API"
readme = "README.md"
license = "Apache-2.0"
Expand Down
9 changes: 5 additions & 4 deletions trivy.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# Trivy configuration file
# https://aquasecurity.github.io/trivy/latest/docs/references/configuration/config-file/
# Can be deleted after public ecr mirror will be added by default
db:
no-progress: true
repository:
- ghcr.io/aquasecurity/trivy-db:2
- mirror.gcr.io/aquasec/trivy-db:2
- public.ecr.aws/aquasecurity/trivy-db:2
- ghcr.io/aquasecurity/trivy-db:2
java-repository:
- ghcr.io/aquasecurity/trivy-java-db:1
- mirror.gcr.io/aquasec/trivy-java-db:1
- public.ecr.aws/aquasecurity/trivy-java-db:1
- ghcr.io/aquasecurity/trivy-java-db:1
misconfiguration:
checks-bundle-repository: public.ecr.aws/aquasecurity/trivy-checks
checks-bundle-repository: mirror.gcr.io/aquasec/trivy-checks:1
Loading