Skip to content

Commit 984696d

Browse files
committed
fixing the workflow issues
1 parent 8ab8583 commit 984696d

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

.github/workflows/allcov.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
- name: Baseline for later scripted manual setup of go1.20
2222
uses: actions/setup-go@v4
2323
with:
24-
go-version: 1.19
24+
go-version: 1.20.14
2525
- name: allCovSh
2626
run: tests/unittest/allcover.sh
27-
- uses: actions/upload-artifact@v3
27+
- uses: actions/upload-artifact@v4
2828
with:
2929
name: coverage web page
3030
path: /home/runner/go/allcover.htm

.github/workflows/gv-oracle.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
- name: Set up Go
2222
uses: actions/setup-go@v3
2323
with:
24-
go-version: 1.15
24+
go-version: 1.20.14
2525
- name: System Test
2626
run: tests/unittest3/testall.sh

.github/workflows/jdbc-ci-maven.yml

+12-1
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,22 @@ jobs:
1616

1717
steps:
1818
- uses: actions/checkout@v3
19+
20+
- name: Set up Docker Buildx
21+
uses: docker/setup-buildx-action@v1
22+
23+
- name: Install Docker Compose
24+
run: |
25+
sudo curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
26+
sudo chmod +x /usr/local/bin/docker-compose
27+
28+
- name: Verify Docker Compose installation
29+
run: docker-compose --version
1930

2031
- name: Set up Go
2132
uses: actions/setup-go@v4
2233
with:
23-
go-version: 1.19
34+
go-version: 1.20.14
2435

2536
- name: whereami
2637
run: pwd

0 commit comments

Comments
 (0)