Skip to content

Commit d82e383

Browse files
authored
Merge pull request #1215 from rabbitmq/rabbitmq-dotnet-client-1214
Misc updates
2 parents 970304f + c18fb1a commit d82e383

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,11 +39,11 @@ jobs:
3939

4040
steps:
4141
- name: Checkout repository
42-
uses: actions/checkout@v2
42+
uses: actions/checkout@v3
4343

4444
# Initializes the CodeQL tools for scanning.
4545
- name: Initialize CodeQL
46-
uses: github/codeql-action/init@v1
46+
uses: github/codeql-action/init@v2
4747
with:
4848
languages: ${{ matrix.language }}
4949
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -54,7 +54,7 @@ jobs:
5454
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5555
# If this step fails, then you should remove it and run the build manually (see below)
5656
- name: Autobuild
57-
uses: github/codeql-action/autobuild@v1
57+
uses: github/codeql-action/autobuild@v2
5858

5959
# ℹ️ Command-line programs to run using the OS shell.
6060
# 📚 https://git.io/JvXDl
@@ -68,4 +68,4 @@ jobs:
6868
# make release
6969

7070
- name: Perform CodeQL Analysis
71-
uses: github/codeql-action/analyze@v1
71+
uses: github/codeql-action/analyze@v2

.github/workflows/main.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
steps:
2020
- name: Clone repository
21-
uses: actions/checkout@v2
21+
uses: actions/checkout@v3
2222
with:
2323
submodules: true
2424
- name: Cache installers
@@ -62,7 +62,7 @@ jobs:
6262

6363
steps:
6464
- name: Clone repository
65-
uses: actions/checkout@v2
65+
uses: actions/checkout@v3
6666
with:
6767
submodules: true
6868
- name: Setup .NET

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Changes Between and 6.3.1
1+
## Changes Between 6.3.0 and 6.3.1
22

33
GitHub milestone: [`6.3.1`](https://github.com/rabbitmq/rabbitmq-dotnet-client/milestone/57?closed=1)
44
Diff: [link](https://github.com/rabbitmq/rabbitmq-dotnet-client/compare/v6.3.0...v6.3.1)

projects/Unit/TestBasicPublish.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public void TestBasicRoundtripArray()
3232
string tag = m.BasicConsume(q.QueueName, true, consumer);
3333

3434
m.BasicPublish("", q.QueueName, ref bp, sendBody);
35-
bool waitResFalse = are.WaitOne(2000);
35+
bool waitResFalse = are.WaitOne(5000);
3636
m.BasicCancel(tag);
3737

3838
Assert.True(waitResFalse);

tools/versions.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"erlang": "24.3.3",
3-
"rabbitmq": "3.9.14"
2+
"erlang": "25.0",
3+
"rabbitmq": "3.10.5"
44
}

0 commit comments

Comments
 (0)