From 7bee3b683ec96039f6f5be0c0bd190e79649e15a Mon Sep 17 00:00:00 2001 From: cortadocodes Date: Thu, 25 Apr 2024 15:59:33 +0100 Subject: [PATCH] OPS: Fix version number --- Dockerfile | 2 +- README.md | 2 +- action.yaml | 2 +- pyproject.toml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 41ef6e6..e0028c9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM python:3.10.7-slim RUN apt-get update -y && apt-get install -y --fix-missing curl git && rm -rf /var/lib/apt/lists/* -RUN pip3 install git+https://github.com/octue/get-deployment-info@0.3.2 +RUN pip3 install git+https://github.com/octue/get-deployment-info@0.3.3 COPY get_deployment_info/entrypoint.sh /entrypoint.sh diff --git a/README.md b/README.md index e633762..7b993c0 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ steps: - name: Get deployment info id: get-deployment-info - uses: octue/get-deployment-info@0.3.2 + uses: octue/get-deployment-info@0.3.3 with: gcp_project_name: test-project gcp_project_number: 1234 diff --git a/action.yaml b/action.yaml index eceeead..b765acc 100644 --- a/action.yaml +++ b/action.yaml @@ -61,7 +61,7 @@ outputs: runs: using: "docker" - image: "docker://octue/get-deployment-info:0.3.2" + image: "docker://octue/get-deployment-info:0.3.3" args: - ${{ inputs.gcp_project_name }} - ${{ inputs.gcp_project_number }} diff --git a/pyproject.toml b/pyproject.toml index 06fd9fd..5180e50 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "get-deployment-info" -version = "0.3.2" +version = "0.3.3" description = "A Github Action that gets the information required to build and deploy an Octue service." authors = ["Marcus Lugg "] readme = "README.md"