mirror of https://github.com/dapr/dotnet-sdk.git
Updates Dapr to 1.12 in GitHub actions itest (#1185)
* 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>
This commit is contained in:
parent
abcbf4f9a0
commit
b669585b22
|
@ -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 }}
|
||||
|
|
|
@ -138,7 +138,7 @@ namespace Dapr.E2E.Test
|
|||
}
|
||||
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
|
||||
|
|
Loading…
Reference in New Issue