File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Container image that runs your code
2
- FROM ghcr.io/axway-api-management-plus/apimcli:1.14.8
2
+ FROM ghcr.io/axway-api-management-plus/apimcli:1.14.11
3
3
4
4
# Copies your code file from your action repository to the filesystem path `/` of the container
5
5
COPY entrypoint.sh /entrypoint.sh
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ Run an APIM-CLI command. For example: 'apim api get -h api.demo.axway.com -u ser
14
14
15
15
``` yaml
16
16
- name : Get all applications
17
- uses : Axway-API-Management-Plus/apim-cli-github-action@v1.14.8
17
+ uses : Axway-API-Management-Plus/apim-cli-github-action@v1.14.11
18
18
with :
19
19
command : apim api get -h api.demo.axway.com -u serviceaccount -p ${{ secrets.password }}
20
20
env :
@@ -23,7 +23,7 @@ Run an APIM-CLI command. For example: 'apim api get -h api.demo.axway.com -u ser
23
23
24
24
` ` ` yaml
25
25
- name : Import APIs
26
- uses : Axway-API-Management-Plus/apim-cli-github-action@v1.14.8
26
+ uses : Axway-API-Management-Plus/apim-cli-github-action@v1.14.11
27
27
with :
28
28
command : " apim api import -c api-config.json -a api.json -h maverick.demo.axway.com -u apiadmin -p ${{ secrets.password }}"
29
29
` ` `
Original file line number Diff line number Diff line change 1
1
#! /bin/sh
2
2
java -Xms64m -Xmx256m -cp " /opt/apim-cli/lib/*" com.axway.apim.cli.APIManagerCLI ${INPUT_COMMAND}
3
-
4
-
You can’t perform that action at this time.
0 commit comments