Skip to content

Commit

Permalink
Updates Dapr to 1.12 in GitHub actions itest (#1185)
Browse files Browse the repository at this point in the history
* Updates Dapr to 1.12 in GitHub actions

Signed-off-by: joshvanl <me@joshvanl.dev>

* Remove commit ref from github actions

Signed-off-by: joshvanl <me@joshvanl.dev>

* Fix case sensitive error string match case

Signed-off-by: joshvanl <me@joshvanl.dev>

---------

Signed-off-by: joshvanl <me@joshvanl.dev>
Co-authored-by: halspang <70976921+halspang@users.noreply.github.com>
  • Loading branch information
JoshVanL and halspang authored Nov 29, 2023
1 parent abcbf4f commit b669585
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/itests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,11 +42,10 @@ jobs:
GOOS: linux
GOARCH: amd64
GOPROXY: https://proxy.golang.org
DAPR_CLI_VER: 1.9.1
DAPR_RUNTIME_VER: 1.10.5
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/3dacfb672d55f1436c249057aaebbe597e1066f3/install/install.sh
DAPR_CLI_VER: 1.12.0
DAPR_RUNTIME_VER: 1.12.0
DAPR_INSTALL_URL: https://raw.githubusercontent.com/dapr/cli/release-1.12/install/install.sh
DAPR_CLI_REF: ''
DAPR_REF: '4181de0edc65fc98a836ae7abc6042c575c8fae5'
steps:
- name: Set up Dapr CLI
run: wget -q ${{ env.DAPR_INSTALL_URL }} -O - | /bin/bash -s ${{ env.DAPR_CLI_VER }}
Expand Down
2 changes: 1 addition & 1 deletion test/Dapr.E2E.Test/Workflows/WorkflowTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ public async Task TestWorkflows()
}
catch (DaprException ex)
{
ex.InnerException.Message.Should().Contain("No such instance exists", $"Instance {instanceId} was not correctly purged");
ex.InnerException.Message.Should().Contain("no such instance exists", $"Instance {instanceId} was not correctly purged");
}

// Start another workflow for event raising purposes
Expand Down

0 comments on commit b669585

Please sign in to comment.