Skip to content

Commit e782055

Browse files
Bump .NET SDK to 9.0.308 (#4633)
* Bump dotnet/sdk in /docker Bumps dotnet/sdk from 9.0.307-bookworm-slim to 9.0.308-bookworm-slim. --- updated-dependencies: - dependency-name: dotnet/sdk dependency-version: 9.0.308-bookworm-slim dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> * Bump .NET SDK to 9.0.308 --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Piotr Kiełkowicz <pkiekowicz@splunk.com>
1 parent 74fa769 commit e782055

12 files changed

+16
-16
lines changed

.github/workflows/build-nuget-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
with:
3535
dotnet-version: |
3636
8.0.416
37-
9.0.307
37+
9.0.308
3838
10.0.100
3939
4040
- name: Check for NuGet packages cache

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
with:
3838
dotnet-version: |
3939
8.0.416
40-
9.0.307
40+
9.0.308
4141
10.0.100
4242
4343
- name: Check for NuGet packages cache

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
with:
7373
dotnet-version: |
7474
8.0.416
75-
9.0.307
75+
9.0.308
7676
10.0.100
7777
7878
- name: Check for NuGet packages cache
@@ -132,7 +132,7 @@ jobs:
132132
with:
133133
dotnet-version: |
134134
8.0.416
135-
9.0.307
135+
9.0.308
136136
10.0.100
137137
138138
- name: Check for NuGet packages cache
@@ -176,7 +176,7 @@ jobs:
176176
with:
177177
dotnet-version: |
178178
8.0.416
179-
9.0.307
179+
9.0.308
180180
10.0.100
181181
182182
- name: Check for NuGet packages cache
@@ -284,7 +284,7 @@ jobs:
284284
with:
285285
dotnet-version: |
286286
8.0.416
287-
9.0.307
287+
9.0.308
288288
10.0.100
289289
290290
- name: Check for NuGet packages cache

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jobs:
7979
with:
8080
dotnet-version: |
8181
8.0.416
82-
9.0.307
82+
9.0.308
8383
10.0.100
8484
8585
# If the analyze step fails for one of the languages you are analyzing with

.github/workflows/release-nextgen-forwarder-packages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Setup .NET
3333
uses: actions/setup-dotnet@d4c94342e560b34958eacfc5d055d21461ed1c5d # tag: v5.0.0
3434
with:
35-
dotnet-version: 9.0.307
35+
dotnet-version: 9.0.308
3636

3737
- name: Check for NuGet packages cache
3838
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0

.github/workflows/release-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
dotnet-version: |
1919
8.0.416
20-
9.0.307
20+
9.0.308
2121
10.0.100
2222
2323
- name: Test the PowerShell module instructions from README.md
@@ -69,7 +69,7 @@ jobs:
6969
with:
7070
dotnet-version: |
7171
8.0.416
72-
9.0.307
72+
9.0.308
7373
10.0.100
7474
7575
- name: Install MacOS CoreUtils

.github/workflows/verify-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
dotnet-version: |
4444
8.0.416
45-
9.0.307
45+
9.0.308
4646
10.0.100
4747
4848
- name: Run BuildTracer and ManagedTests

docker/alpine.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ COPY ./scripts/dotnet-install.sh ./dotnet-install.sh
2020

2121
# Install older SDKs using the install script
2222
RUN chmod +x ./dotnet-install.sh \
23-
&& ./dotnet-install.sh -v 9.0.307 --install-dir /usr/share/dotnet --no-path \
23+
&& ./dotnet-install.sh -v 9.0.308 --install-dir /usr/share/dotnet --no-path \
2424
&& ./dotnet-install.sh -v 8.0.416 --install-dir /usr/share/dotnet --no-path \
2525
&& rm dotnet-install.sh
2626

docker/centos-stream9.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ COPY ./scripts/dotnet-install.sh ./dotnet-install.sh
88

99
RUN chmod +x ./dotnet-install.sh \
1010
&& ./dotnet-install.sh -v 10.0.100 --install-dir /usr/share/dotnet --no-path \
11-
&& ./dotnet-install.sh -v 9.0.307 --install-dir /usr/share/dotnet --no-path \
11+
&& ./dotnet-install.sh -v 9.0.308 --install-dir /usr/share/dotnet --no-path \
1212
&& ./dotnet-install.sh -v 8.0.416 --install-dir /usr/share/dotnet --no-path \
1313
&& rm dotnet-install.sh
1414

docker/debian-arm64.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:9.0.307-bookworm-slim@sha256:1ea5b7f2154cbd1e20a336cb56957dba30a7ce30ef5c1c032a37c42801594713
1+
FROM mcr.microsoft.com/dotnet/sdk:9.0.308-bookworm-slim@sha256:584cdb686f8ff7d2ffd636581b9bba8c9de38df1e751e9275438cddecdfbbcd2
22
# There is no official base image for .NET SDK 10+ on Debian, so install .NET10 via dotnet-install
33

44
RUN apt-get update && \

0 commit comments

Comments
 (0)