Skip to content

Commit 0df7ad5

Browse files
authoredJun 6, 2024··
Bump GitHub Actions (#1503)
1 parent 17193aa commit 0df7ad5

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed
 

Diff for: ‎.github/workflows/ci.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ jobs:
2626
runs-on: ${{ matrix.runsOn || matrix.os }}
2727
steps:
2828
- name: Checkout repository
29-
uses: actions/checkout@v3
29+
uses: actions/checkout@v4
3030
with:
3131
submodules: recursive
3232

3333
- name: Setup Go
34-
uses: actions/setup-go@v4
34+
uses: actions/setup-go@v5
3535
with:
3636
go-version: ${{ matrix.go-version }}
3737

@@ -71,7 +71,7 @@ jobs:
7171

7272
- name: Docker compose - checkout
7373
if: ${{ matrix.testDockerCompose }}
74-
uses: actions/checkout@v3
74+
uses: actions/checkout@v4
7575
with:
7676
repository: temporalio/docker-compose
7777
path: ./docker-compose
@@ -81,7 +81,7 @@ jobs:
8181
run: |
8282
cp ./.github/workflows/docker/docker-compose.override.yaml ./docker-compose/docker-compose.override.yaml
8383
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 &
8585
go run ./.github/workflows/wait_for_server.go
8686
8787
- name: Docker compose - integration tests
@@ -104,10 +104,10 @@ jobs:
104104
TEMPORAL_CLIENT_CERT: ${{ secrets.TEMPORAL_CLIENT_CERT }}
105105
TEMPORAL_CLIENT_KEY: ${{ secrets.TEMPORAL_CLIENT_KEY }}
106106
steps:
107-
- uses: actions/checkout@v3
107+
- uses: actions/checkout@v4
108108
with:
109109
submodules: recursive
110-
- uses: actions/setup-go@v4
110+
- uses: actions/setup-go@v5
111111
with:
112112
go-version: ${{ matrix.go-version }}
113113
- name: Single integration test against cloud

0 commit comments

Comments
 (0)
Please sign in to comment.