@@ -26,12 +26,12 @@ jobs:
26
26
runs-on : ${{ matrix.runsOn || matrix.os }}
27
27
steps :
28
28
- name : Checkout repository
29
- uses : actions/checkout@v3
29
+ uses : actions/checkout@v4
30
30
with :
31
31
submodules : recursive
32
32
33
33
- name : Setup Go
34
- uses : actions/setup-go@v4
34
+ uses : actions/setup-go@v5
35
35
with :
36
36
go-version : ${{ matrix.go-version }}
37
37
71
71
72
72
- name : Docker compose - checkout
73
73
if : ${{ matrix.testDockerCompose }}
74
- uses : actions/checkout@v3
74
+ uses : actions/checkout@v4
75
75
with :
76
76
repository : temporalio/docker-compose
77
77
path : ./docker-compose
81
81
run : |
82
82
cp ./.github/workflows/docker/docker-compose.override.yaml ./docker-compose/docker-compose.override.yaml
83
83
cp ./.github/workflows/docker/dynamic-config-custom.yaml ./docker-compose/dynamicconfig/dynamic-config-custom.yaml
84
- docker- compose --project-directory ./docker-compose up &
84
+ docker compose --project-directory ./docker-compose up &
85
85
go run ./.github/workflows/wait_for_server.go
86
86
87
87
- name : Docker compose - integration tests
@@ -104,10 +104,10 @@ jobs:
104
104
TEMPORAL_CLIENT_CERT : ${{ secrets.TEMPORAL_CLIENT_CERT }}
105
105
TEMPORAL_CLIENT_KEY : ${{ secrets.TEMPORAL_CLIENT_KEY }}
106
106
steps :
107
- - uses : actions/checkout@v3
107
+ - uses : actions/checkout@v4
108
108
with :
109
109
submodules : recursive
110
- - uses : actions/setup-go@v4
110
+ - uses : actions/setup-go@v5
111
111
with :
112
112
go-version : ${{ matrix.go-version }}
113
113
- name : Single integration test against cloud
0 commit comments