Skip to content
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/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,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/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
path: qacover-core/.tdrules-cache
key: tdrules-cache-${{ matrix.scope }}-v1-${{ github.run_id }}
Expand Down Expand Up @@ -165,7 +165,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/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
path: /home/runner/.m2/repository #can't pass $HOME
key: setup-java-IT-maven-v1-${{ github.run_id }}
Expand Down Expand Up @@ -250,7 +250,7 @@ jobs:

- name: Rules cache
id: rules-cache
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
with:
path: net/.tdrules-cache
key: tdrules-cache-Net-v1-${{ github.run_id }}
Expand All @@ -260,7 +260,7 @@ jobs:

- name: Cache NuGet Packages
id: nuget-packages
uses: actions/cache@v5.0.3
uses: actions/cache@v5.0.4
env:
cache-name: nuget-package-cache
with:
Expand Down
2 changes: 1 addition & 1 deletion net/QACoverTest/QACoverTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

<PackageReference Include="VisualAssert" Version="2.6.1" />

<PackageReference Include="Microsoft.Data.SqlClient" Version="6.1.4" />
<PackageReference Include="Microsoft.Data.SqlClient" Version="7.0.0" />

<PackageReference Include="System.Data.SQLite.Core" Version="1.0.119" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>3.51.2.0</version>
<version>3.51.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
Loading