From e9fea9bc58c07f9b3adba6eeb95e5b098b93a388 Mon Sep 17 00:00:00 2001 From: Dmitry Afanasyev Date: Sun, 27 Aug 2023 22:47:50 +0300 Subject: [PATCH] fix GitHub actions --- .github/workflows/poetry-test.yml | 6 +++--- Dockerfile | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/poetry-test.yml b/.github/workflows/poetry-test.yml index 243a0a6..597ad6c 100644 --- a/.github/workflows/poetry-test.yml +++ b/.github/workflows/poetry-test.yml @@ -24,13 +24,13 @@ jobs: id: setup-python uses: actions/setup-python@v4 with: - python-version: '3.11.3' + python-version: '3.11.5' #---------------------------------------------- # ----- install & configure poetry ----- #---------------------------------------------- - name: Install poetry env: # Keep in sync with `POETRY_VERSION` in `Dockerfile` - POETRY_VERSION: "1.4.2" + POETRY_VERSION: "1.6.1" run: | curl -sSL "https://install.python-poetry.org" | python - # Adding `poetry` to `$PATH`: @@ -67,5 +67,5 @@ jobs: uses: actions/checkout@v3 - name: Check docker-compose run: | - docker-compose up --build + docker compose up --build bash build-check.sh \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index 571318b..f6ea7c0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN groupadd ${USER} && useradd -g ${USER} ${USER} RUN mkdir /code /poetry RUN chown -R ${USER}:${USER} /code /poetry -COPY --chown=${USER}:${USER} ./poetry/pyproject.toml /code/ +COPY --chown=${USER}:${USER} ./pyproject.toml /code/ WORKDIR /code