Skip to content

Commit 1b2390a

Browse files
committed
docs: update example to use v1.1
Signed-off-by: Avi Miller <[email protected]>
1 parent 19e341b commit 1b2390a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# run-oci-cli-command v1.0
1+
# run-oci-cli-command
22

33
This GitHub Action installs the OCI CLI and then runs the specified command. This action will automatically cache the OCI CLI install to speed up any subsequent steps that use this action.
44

@@ -55,14 +55,14 @@ jobs:
5555
OCI_CLI_REGION: ${{ secrets.OCI_CLI_REGION }}
5656
steps:
5757
- name: Retrieve the OCID of a named compartment in tenancy
58-
uses: oracle-actions/run-oci-cli-command@v1.0
58+
uses: oracle-actions/run-oci-cli-command@v1.1
5959
id: find-compartment-id
6060
with:
6161
command: 'iam compartment list --compartment-id-in-subtree=true'
6262
query: "data[?name=='testing'].id"
6363

6464
- name: Retrieve the display name and shape of the instances in my compartment
65-
uses: oracle-actions/run-oci-cli-command@v1.0
65+
uses: oracle-actions/run-oci-cli-command@v1.1
6666
id: find-instances
6767
with:
6868
command: 'compute instance list --compartment-id ${{ steps.find-compartment-id.outputs.raw_output }}'

0 commit comments

Comments
 (0)