Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
sudo cpanm --notest Test::Nginx > build.log 2>&1 || (cat build.log && exit 1)
git clone https://github.com/openresty/test-nginx.git test-nginx
docker-compose --project-directory . -f t/docker-compose.yml up -d
docker compose --project-directory . -f t/docker-compose.yml up -d

- name: Install
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stress.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Before install
run: |
sudo apt install -y perl build-essential libssl-dev luarocks
docker-compose --project-directory . -f t/docker-compose.yml up -d
docker compose --project-directory . -f t/docker-compose.yml up -d

- name: Install
run: |
Expand Down
2 changes: 1 addition & 1 deletion install-util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ install_go() {
return
fi

GO_VER=1.19
GO_VER=1.22.6
wget --quiet https://go.dev/dl/go${GO_VER}.linux-${arch}.tar.gz > /dev/null
rm -rf /usr/local/go && tar -C /usr/local -xzf go${GO_VER}.linux-${arch}.tar.gz
/usr/local/go/bin/go version
Expand Down
Loading