Skip to content

Commit 2351094

Browse files
committed
* Add explicit cast
1 parent 7381ef3 commit 2351094

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

.ci/windows/versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"erlang": "27.1.2",
3-
"rabbitmq": "4.0.4"
2+
"erlang": "27.2",
3+
"rabbitmq": "4.0.5"
44
}

.github/workflows/wf_build-and-test.yaml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
path: |
2424
~/.nuget/packages
2525
~/AppData/Local/NuGet/v3-cache
26-
key: ${{ runner.os }}-v0-nuget-${{ hashFiles('**/*.csproj') }}
26+
key: ${{ runner.os }}-v0-nuget-${{ hashFiles('**/*.csproj','Directory.Packages.props') }}
2727
restore-keys: |
2828
${{ runner.os }}-v0-nuget-
2929
- name: Build (Debug)
@@ -55,6 +55,14 @@ jobs:
5555
runs-on: ubuntu-latest
5656
steps:
5757
- uses: actions/checkout@v4
58+
- uses: actions/cache@v4
59+
with:
60+
path: |
61+
~/.nuget/packages
62+
~/.local/share/NuGet/v3-cache
63+
key: ${{ runner.os }}-v0-nuget-${{ hashFiles('**/*.csproj','Directory.Packages.props') }}
64+
restore-keys: |
65+
${{ runner.os }}-v0-nuget-
5866
- name: Build (Debug)
5967
run: dotnet build ${{ github.workspace }}/Build.csproj
6068
- name: Verify

0 commit comments

Comments
 (0)