Skip to content

Commit 7bee3b6

Browse files
committed
OPS: Fix version number
1 parent 79a1cf8 commit 7bee3b6

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM python:3.10.7-slim
22

33
RUN apt-get update -y && apt-get install -y --fix-missing curl git && rm -rf /var/lib/apt/lists/*
44

5-
RUN pip3 install git+https://github.com/octue/[email protected].2
5+
RUN pip3 install git+https://github.com/octue/[email protected].3
66

77
COPY get_deployment_info/entrypoint.sh /entrypoint.sh
88

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ steps:
2525

2626
- name: Get deployment info
2727
id: get-deployment-info
28-
uses: octue/[email protected].2
28+
uses: octue/[email protected].3
2929
with:
3030
gcp_project_name: test-project
3131
gcp_project_number: 1234

action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ outputs:
6161

6262
runs:
6363
using: "docker"
64-
image: "docker://octue/get-deployment-info:0.3.2"
64+
image: "docker://octue/get-deployment-info:0.3.3"
6565
args:
6666
- ${{ inputs.gcp_project_name }}
6767
- ${{ inputs.gcp_project_number }}

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "get-deployment-info"
3-
version = "0.3.2"
3+
version = "0.3.3"
44
description = "A Github Action that gets the information required to build and deploy an Octue service."
55
authors = ["Marcus Lugg <[email protected]>"]
66
readme = "README.md"

0 commit comments

Comments
 (0)