This is an automated email from the ASF dual-hosted git repository. chenjunxu pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/apisix-dashboard.git
The following commit(s) were added to refs/heads/master by this push: new ba185b9 change: update `dag-to-lua` lib to version 1.1 (#423) ba185b9 is described below commit ba185b9e109c945235e61eff3c63a7cabd56d50f Author: nic-chen <33000667+nic-c...@users.noreply.github.com> AuthorDate: Fri Aug 28 14:30:31 2020 +0800 change: update `dag-to-lua` lib to version 1.1 (#423) --- .github/workflows/api_ci.yml | 6 +++--- .github/workflows/api_cicd.yml | 6 +++--- api/Dockerfile | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/api_ci.yml b/.github/workflows/api_ci.yml index 039f26c..32a365b 100644 --- a/.github/workflows/api_ci.yml +++ b/.github/workflows/api_ci.yml @@ -56,10 +56,10 @@ jobs: - name: get lua lib run: | - wget https://github.com/api7/dag-to-lua/archive/v1.0.tar.gz + wget https://github.com/api7/dag-to-lua/archive/v1.1.tar.gz sudo mkdir -p /go/api7-manager-api/dag-to-lua/ - tar -zxvf v1.0.tar.gz - sudo mv ./dag-to-lua-1.0/lib/* /go/api7-manager-api/dag-to-lua/ + tar -zxvf v1.1.tar.gz + sudo mv ./dag-to-lua-1.1/lib/* /go/api7-manager-api/dag-to-lua/ - name: install runtime run: | diff --git a/.github/workflows/api_cicd.yml b/.github/workflows/api_cicd.yml index 43cb2ae..abe0289 100644 --- a/.github/workflows/api_cicd.yml +++ b/.github/workflows/api_cicd.yml @@ -50,10 +50,10 @@ jobs: - name: get lua lib run: | - wget https://github.com/api7/dag-to-lua/archive/v1.0.tar.gz + wget https://github.com/api7/dag-to-lua/archive/v1.1.tar.gz sudo mkdir -p /go/api7-manager-api/dag-to-lua/ - tar -zxvf v1.0.tar.gz - sudo mv ./dag-to-lua-1.0/lib/* /go/api7-manager-api/dag-to-lua/ + tar -zxvf v1.1.tar.gz + sudo mv ./dag-to-lua-1.1/lib/* /go/api7-manager-api/dag-to-lua/ - name: install runtime run: | diff --git a/api/Dockerfile b/api/Dockerfile index c9e52ba..9bb22ff 100644 --- a/api/Dockerfile +++ b/api/Dockerfile @@ -30,10 +30,10 @@ RUN mkdir /go/manager-api \ && ln -s /usr/share/zoneinfo/Hongkong /etc/localtime \ && dpkg-reconfigure -f noninteractive tzdata -RUN wget https://github.com/api7/dag-to-lua/archive/v1.0.tar.gz \ - && tar -zxvf v1.0.tar.gz \ +RUN wget https://github.com/api7/dag-to-lua/archive/v1.1.tar.gz \ + && tar -zxvf v1.1.tar.gz \ && mkdir /go/manager-api/dag-to-lua \ - && mv ./dag-to-lua-1.0/lib/* /go/manager-api/dag-to-lua/ + && mv ./dag-to-lua-1.1/lib/* /go/manager-api/dag-to-lua/ FROM alpine:3.11