You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# run-oci-cli-command v1.0
1
+
# run-oci-cli-command
2
2
3
3
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.
4
4
@@ -55,14 +55,14 @@ jobs:
55
55
OCI_CLI_REGION: ${{ secrets.OCI_CLI_REGION }}
56
56
steps:
57
57
- 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
59
59
id: find-compartment-id
60
60
with:
61
61
command: 'iam compartment list --compartment-id-in-subtree=true'
62
62
query: "data[?name=='testing'].id"
63
63
64
64
- 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
66
66
id: find-instances
67
67
with:
68
68
command: 'compute instance list --compartment-id ${{ steps.find-compartment-id.outputs.raw_output }}'
0 commit comments