Skip to content

Commit 534ec79

Browse files
committed
Merge branch 'release/3.0.0'
2 parents 7c61a43 + abfe3f3 commit 534ec79

24 files changed

Lines changed: 410 additions & 302 deletions

.github/workflows/dotnet.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313

1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: Setup .NET
19-
uses: actions/setup-dotnet@v2
19+
uses: actions/setup-dotnet@v4
2020
with:
21-
dotnet-version: 6.0.x
22-
- name: Add NuGet source
21+
dotnet-version: 9.0.x
22+
23+
- name: Add GitHub NuGet source
2324
run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/BrackeysBot/index.json"
2425

2526
- name: Restore dependencies

.github/workflows/prerelease.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Setup .NET
18-
uses: actions/setup-dotnet@v2
18+
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: 6.0.x
20+
dotnet-version: 9.0.x
2121

2222
- name: Add GitHub NuGet source
2323
run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/BrackeysBot/index.json"

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs:
1212

1313
steps:
1414
- name: Checkout
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: Setup .NET
18-
uses: actions/setup-dotnet@v2
18+
uses: actions/setup-dotnet@v4
1919
with:
20-
dotnet-version: 6.0.x
20+
dotnet-version: 9.0.x
2121

2222
- name: Add GitHub NuGet source
2323
run: dotnet nuget add source --username oliverbooth --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text --name github "https://nuget.pkg.github.com/BrackeysBot/index.json"

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM mcr.microsoft.com/dotnet/runtime:6.0 AS base
1+
FROM mcr.microsoft.com/dotnet/runtime:9.0 AS base
22
WORKDIR /app
33
RUN apt-get update && apt-get install -y libfontconfig1
44

5-
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
5+
FROM mcr.microsoft.com/dotnet/sdk:9.0 AS build
66
WORKDIR /src
77
COPY ["Pencil/Pencil.csproj", "Pencil/"]
88
RUN dotnet restore "Pencil/Pencil.csproj"

Pencil/CommandModules/ColorCommand.ResponseSchema.cs

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

0 commit comments

Comments
 (0)