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
2 changes: 1 addition & 1 deletion .github/workflows/github-actions-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
pull-requests: write

env:
DOTNET_SDK_VERSION: "9.0.308"
DOTNET_SDK_VERSION: "10.0.201"
IMAGE_NAME: dotnet-sdk-extended

steps:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/github-actions-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
on: workflow_dispatch

env:
DOTNET_SDK_VERSION: "9.0.310"
DOTNET_SDK_VERSION: "10.0.201"

run-name: "v9.0.310"
run-name: "v10.0.201"

jobs:
build:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ARG DOTNET_SDK_VERSION=9.0
ARG DOTNET_SDK_VERSION=10.0

FROM mcr.microsoft.com/dotnet/sdk:${DOTNET_SDK_VERSION}

Expand All @@ -24,7 +24,7 @@ RUN apt-get update && \
curl https://packages.microsoft.com/config/ubuntu/22.04/prod.list | tee /etc/apt/sources.list.d/msprod.list && \
curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key \
| gpg --dearmor -o /usr/share/keyrings/nodesource.gpg; \
echo "deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_22.x nodistro main" \
echo "deb [signed-by=/usr/share/keyrings/nodesource.gpg] https://deb.nodesource.com/node_24.x nodistro main" \
> /etc/apt/sources.list.d/nodesource.list; \
apt-get update && \
ACCEPT_EULA=Y apt-get install -y sqlcmd nodejs && \
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,11 @@ Image registry:
- [9.0.308](https://github.com/PosInformatique/dotnet-sdk-extended/pkgs/container/dotnet-sdk-extended/)
- [9.0.309](https://github.com/PosInformatique/dotnet-sdk-extended/pkgs/container/dotnet-sdk-extended/)
- [9.0.310](https://github.com/PosInformatique/dotnet-sdk-extended/pkgs/container/dotnet-sdk-extended/)
- [10.0.201](https://github.com/PosInformatique/dotnet-sdk-extended/pkgs/container/dotnet-sdk-extended/)

## Tool versions
- Node.js: v22.22.0 (LTS)
- npm: 10.9.4
- Node.js: 24.13.0 (LTS)
- npm: 11.6.2
- sqlcmd: 1.5.0

## Environment variables
Expand Down
Loading