Skip to content

Commit

Permalink
Bump GitHub Actions (#1503)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjameswh authored Jun 6, 2024
1 parent 17193aa commit 0df7ad5
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ jobs:
runs-on: ${{ matrix.runsOn || matrix.os }}
steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup Go
uses: actions/setup-go@v4
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:

- name: Docker compose - checkout
if: ${{ matrix.testDockerCompose }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: temporalio/docker-compose
path: ./docker-compose
Expand All @@ -81,7 +81,7 @@ jobs:
run: |
cp ./.github/workflows/docker/docker-compose.override.yaml ./docker-compose/docker-compose.override.yaml
cp ./.github/workflows/docker/dynamic-config-custom.yaml ./docker-compose/dynamicconfig/dynamic-config-custom.yaml
docker-compose --project-directory ./docker-compose up &
docker compose --project-directory ./docker-compose up &
go run ./.github/workflows/wait_for_server.go
- name: Docker compose - integration tests
Expand All @@ -104,10 +104,10 @@ jobs:
TEMPORAL_CLIENT_CERT: ${{ secrets.TEMPORAL_CLIENT_CERT }}
TEMPORAL_CLIENT_KEY: ${{ secrets.TEMPORAL_CLIENT_KEY }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Single integration test against cloud
Expand Down

0 comments on commit 0df7ad5

Please sign in to comment.