Skip to content

Commit 65f891a

Browse files
committed
Add dependabot file and update CI
1 parent 8c123c6 commit 65f891a

File tree

6 files changed

+259
-167
lines changed

6 files changed

+259
-167
lines changed

.github/workflows/ci-arm.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v4
1313
with:
1414
fetch-depth: 0
15-
- uses: actions/setup-dotnet@v1
15+
- uses: actions/setup-dotnet@v5
1616
- uses: astral-sh/setup-uv@v6
1717
- name: Build
1818
run: uv build
@@ -42,16 +42,16 @@ jobs:
4242
needs: build
4343
strategy:
4444
matrix:
45-
os: [ubuntu-22.04, windows-latest, macos-13]
46-
python: ['3.13', '3.12', '3.11', '3.10', '3.9', '3.8'] # pypy3
45+
os: [ubuntu-24, ubuntu-24-arm, windows-latest, macos-13]
46+
python: ['3.14', '3.13', '3.12', '3.11', '3.10', '3.9', '3.8'] # pypy3
4747

4848
steps:
4949
- uses: actions/checkout@v4
5050

5151
- name: Setup .NET
52-
uses: actions/setup-dotnet@v1
52+
uses: actions/setup-dotnet@v5
5353
with:
54-
dotnet-version: '6.0.x'
54+
dotnet-version: '8.0.x'
5555

5656
- name: Set up Python ${{ matrix.python }}
5757
uses: astral-sh/setup-uv@v6

dependabot.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "github-actions"
4+
directory: "/"
5+
schedule:
6+
interval: "weekly"
7+
8+
- package-ecosystem: "pip"
9+
directory: "/"
10+
schedule:
11+
interval: "weekly"
12+
13+
- package-ecosystem: "nuget"
14+
directory: "netfx_loader/"
15+
schedule:
16+
interval: "weekly"

example/example.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net60;netstandard20</TargetFrameworks>
3+
<TargetFrameworks>net80;netstandard20</TargetFrameworks>
44
<GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
55
</PropertyGroup>
66
<ItemGroup>

netfx_loader/ClrLoader.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net47</TargetFrameworks>
3+
<TargetFrameworks>net472</TargetFrameworks>
44
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
55
</PropertyGroup>
66

0 commit comments

Comments
 (0)