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

Combined dependency updates (2024-10-27) #292

Merged
merged 10 commits into from
Oct 27, 2024
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
working-directory: net
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4.0.1
- uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: '8.0.x'
#- name: Enable snapshots
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ jobs:
# to simulate an updatable cache. If eventually we need to clear the cache, increase the V* number
- name: Rules cache
id: rules-cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: qacover-core/.tdrules-cache
key: tdrules-cache-${{ matrix.scope }}-v1-${{ github.run_id }}
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
# Uses the same trick that in other jobs top simulate a writable cache
- name: Custom cache for IT
id: rules-cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: /home/runner/.m2/repository #can't pass $HOME
key: setup-java-IT-maven-v1-${{ github.run_id }}
Expand Down Expand Up @@ -228,7 +228,7 @@ jobs:
working-directory: net
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4.0.1
- uses: actions/setup-dotnet@v4.1.0
with:
dotnet-version: '8.0.x'

Expand All @@ -247,7 +247,7 @@ jobs:

- name: Rules cache
id: rules-cache
uses: actions/[email protected].1
uses: actions/[email protected].2
with:
path: net/.tdrules-cache
key: tdrules-cache-Net-v1-${{ github.run_id }}
Expand Down
2 changes: 1 addition & 1 deletion net/QACoverTest/QACoverTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

<PackageReference Include="NUnit3TestAdapter" Version="4.6.0" />

<PackageReference Include="VisualAssert" Version="2.5.0" />
<PackageReference Include="VisualAssert" Version="2.5.1" />
</ItemGroup>

<ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>io.github.javiertuya</groupId>
<artifactId>visual-assert</artifactId>
<version>2.5.0</version>
<version>2.5.1</version>
<scope>test</scope>
</dependency>
<!--this dependency is in portable-java, but if not set here
Expand Down Expand Up @@ -113,7 +113,7 @@
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.46.1.3</version>
<version>3.47.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down