Skip to content

Commit

Permalink
chore: bump epam/ai-dial-ci from 1.10.2 to 1.11.0 (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
dependabot[bot] authored Jan 16, 2025
1 parent c054ebf commit ecfb22b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
gitlab-dev-deploy:
if: ${{ github.event.registry_package.package_version.container_metadata.tag.name == 'development' }}
uses: epam/ai-dial-ci/.github/workflows/deploy-development.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/deploy-development.yml@1.11.0
with:
gitlab-project-id: "2144"
gitlab-project-ref: "master"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-title-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ on:

jobs:
pr-title-check:
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/pr-title-check.yml@1.11.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 @@ -6,5 +6,5 @@ on:

jobs:
run_tests:
uses: epam/ai-dial-ci/.github/workflows/python_docker_pr.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/python_docker_pr.yml@1.11.0
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ on:

jobs:
release:
uses: epam/ai-dial-ci/.github/workflows/python_docker_release.yml@1.10.2
uses: epam/ai-dial-ci/.github/workflows/python_docker_release.yml@1.11.0
secrets: inherit
8 changes: 4 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ PORT ?= 5001
IMAGE_NAME ?= ai-dial-adapter-dial
PLATFORM ?= linux/amd64
DEV_PYTHON ?= 3.11
VENV ?= .venv
POETRY ?= $(VENV)/bin/poetry
VENV_DIR ?= .venv
POETRY ?= $(VENV_DIR)/bin/poetry
POETRY_VERSION ?= 1.8.5
ARGS=

Expand All @@ -12,8 +12,8 @@ ARGS=
all: build

init_env:
python -m venv $(VENV)
$(VENV)/bin/pip install poetry==$(POETRY_VERSION) --quiet
python -m venv $(VENV_DIR)
$(VENV_DIR)/bin/pip install poetry==$(POETRY_VERSION) --quiet

install: init_env
$(POETRY) env use python$(DEV_PYTHON)
Expand Down

0 comments on commit ecfb22b

Please sign in to comment.