From e32f0c16482f2ac499b136f9a2410fc8f800e2a2 Mon Sep 17 00:00:00 2001 From: Ryan Albert Date: Wed, 26 Jun 2024 10:37:12 -0700 Subject: [PATCH] feat: getting poetry dependecy working --- .github/workflows/workflow-executor.yaml | 2 +- Dockerfile | 1 - action.yml | 2 +- 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/workflow-executor.yaml b/.github/workflows/workflow-executor.yaml index 907dcab0..fa9d6819 100644 --- a/.github/workflows/workflow-executor.yaml +++ b/.github/workflows/workflow-executor.yaml @@ -138,7 +138,7 @@ jobs: uses: smorimoto/tune-github-hosted-runner-network@v1 - id: run-workflow name: Run Generation Workflow - uses: speakeasy-api/sdk-generation-action@v15 + uses: speakeasy-api/sdk-generation-action@v15.4.0 with: speakeasy_version: ${{ inputs.speakeasy_version }} github_access_token: ${{ secrets.github_access_token }} diff --git a/Dockerfile b/Dockerfile index 0aa86c9c..b3551a19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -28,7 +28,6 @@ RUN apk add --update --no-cache python3 py3-pip python3-dev ### Install Poetry and set up PATH RUN pip3 install poetry -RUN pip3 list -v RUN poetry --version ### Install Java diff --git a/action.yml b/action.yml index 5997ee27..1f7b0e30 100644 --- a/action.yml +++ b/action.yml @@ -162,7 +162,7 @@ outputs: description: "The directory the SDK target was generated to" runs: using: "docker" - image: "docker://ghcr.io/speakeasy-api/sdk-generation-action:v15" + image: "docker://ghcr.io/speakeasy-api/sdk-generation-action:v15.4.0" env: SPEAKEASY_API_KEY: ${{ inputs.speakeasy_api_key }} SPEAKEASY_SERVER_URL: ${{ inputs.speakeasy_server_url }}