Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump FluentAssertions from 6.12.0 to 6.12.1 #794

Merged
merged 3 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/integration-yaml-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ jobs:

- name: Save OpenSearch logs
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: opensearch-logs-${{ matrix.version }}
path: |
opensearch-*/logs/*

- name: Upload test report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: report-yaml-${{ matrix.version }}
path: client/test-results.xml
Expand Down Expand Up @@ -153,15 +153,15 @@ jobs:

- name: Save OpenSearch logs
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: opensearch-logs-${{ matrix.opensearch_ref }}
path: |
opensearch-*/logs/*

- name: Upload test report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: report-yaml-unreleased-${{ matrix.opensearch_ref }}
path: client/test-results.xml
4 changes: 2 additions & 2 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

- name: Upload test report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: report-${{ matrix.version }}
path: client/build/output/*
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:

- name: Upload test report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: report-unreleased-${{ matrix.opensearch_ref }}
path: client/build/output/*
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
./build.sh release $VERSION
env:
GITHUB_TOKEN: ${{ github.token }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: opensearch-net-${{env.VERSION}}-release-candidate
path: build/output/*.nupkg
4 changes: 2 additions & 2 deletions .github/workflows/test-jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
check_name: Unit Test Results
- name: Upload test report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: unit-test-report
path: build/output/*
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
check_name: Canary Test Results
- name: Upload test report
if: failure()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: canary-test-report
path: build/output/*
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Bumps `Fake.Core.SemVer` from 6.1.0 to 6.1.1
- Bumps `Bogus` from 35.6.0 to 35.6.1
- Bumps `Fake.Core.Environment` from 6.1.0 to 6.1.1
- Bumps `FluentAssertions` from 6.12.0 to 6.12.1

## [1.8.0]
### Added
Expand Down
2 changes: 1 addition & 1 deletion tests/Tests.Core/Tests.Core.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<PackageReference Include="JunitXml.TestLogger" Version="4.0.254" />

<PackageReference Include="Nullean.VsTest.Pretty.TestLogger" Version="0.4.0" />
<PackageReference Include="FluentAssertions" Version="6.12.0" />
<PackageReference Include="FluentAssertions" Version="6.12.1" />

<PackageReference Include="DiffPlex" Version="1.7.2" />
<PackageReference Include="Proc" Version="0.8.1" />
Expand Down
Loading