Skip to content

Commit c614ff4

Browse files
committed
Bump .NET SDK to 10.0.101
1 parent 92ef4b8 commit c614ff4

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
dotnet-version: |
3636
8.0.416
3737
9.0.308
38-
10.0.100
38+
10.0.101
3939
4040
- name: Check for NuGet packages cache
4141
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
dotnet-version: |
3939
8.0.416
4040
9.0.308
41-
10.0.100
41+
10.0.101
4242
4343
- name: Check for NuGet packages cache
4444
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0

.github/workflows/check-sdk-versions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup .NET
2222
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # tag: v5.0.1
2323
with:
24-
dotnet-version: 10.0.100
24+
dotnet-version: 10.0.101
2525

2626
- name: Run VerifySdkVersions
2727
run: ./build.cmd VerifySdkVersions

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ jobs:
7373
dotnet-version: |
7474
8.0.416
7575
9.0.308
76-
10.0.100
76+
10.0.101
7777
7878
- name: Check for NuGet packages cache
7979
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
@@ -133,7 +133,7 @@ jobs:
133133
dotnet-version: |
134134
8.0.416
135135
9.0.308
136-
10.0.100
136+
10.0.101
137137
138138
- name: Check for NuGet packages cache
139139
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
@@ -177,7 +177,7 @@ jobs:
177177
dotnet-version: |
178178
8.0.416
179179
9.0.308
180-
10.0.100
180+
10.0.101
181181
182182
- name: Check for NuGet packages cache
183183
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
@@ -285,7 +285,7 @@ jobs:
285285
dotnet-version: |
286286
8.0.416
287287
9.0.308
288-
10.0.100
288+
10.0.101
289289
290290
- name: Check for NuGet packages cache
291291
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
dotnet-version: |
8181
8.0.416
8282
9.0.308
83-
10.0.100
83+
10.0.101
8484
8585
# If the analyze step fails for one of the languages you are analyzing with
8686
# "We were unable to automatically build your code", modify the matrix above

.github/workflows/dotnet-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Setup .NET
2929
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # tag: v5.0.1
3030
with:
31-
dotnet-version: 10.0.100
31+
dotnet-version: 10.0.101
3232

3333
- name: dotnet format
3434
run: dotnet format .\OpenTelemetry.AutoInstrumentation.sln --no-restore --verify-no-changes

.github/workflows/release-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
dotnet-version: |
1919
8.0.416
2020
9.0.308
21-
10.0.100
21+
10.0.101
2222
2323
- name: Test the PowerShell module instructions from README.md
2424
shell: powershell
@@ -70,7 +70,7 @@ jobs:
7070
dotnet-version: |
7171
8.0.416
7272
9.0.308
73-
10.0.100
73+
10.0.101
7474
7575
- name: Install MacOS CoreUtils
7676
if: ${{ runner.os == 'macOS' }}

.github/workflows/verify-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
dotnet-version: |
4444
8.0.416
4545
9.0.308
46-
10.0.100
46+
10.0.101
4747
4848
- name: Run BuildTracer and ManagedTests
4949
run: ./build.cmd BuildTracer ManagedTests --containers ${{ matrix.containers }} --test-project "${{ github.event.inputs.testProject }}" --test-name '"${{ github.event.inputs.testName }}"' --test-count ${{ github.event.inputs.count }}

docker/centos-stream9.dockerfile

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

99
RUN chmod +x ./dotnet-install.sh \
10-
&& ./dotnet-install.sh -v 10.0.100 --install-dir /usr/share/dotnet --no-path \
10+
&& ./dotnet-install.sh -v 10.0.101 --install-dir /usr/share/dotnet --no-path \
1111
&& ./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

docker/debian-arm64.dockerfile

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

1212
# Install older SDKs using the install script as there are no arm64 SDK packages.
1313
RUN chmod +x ./dotnet-install.sh \
14-
&& ./dotnet-install.sh -v 10.0.100 --install-dir /usr/share/dotnet --no-path \
14+
&& ./dotnet-install.sh -v 10.0.101 --install-dir /usr/share/dotnet --no-path \
1515
&& ./dotnet-install.sh -v 8.0.416 --install-dir /usr/share/dotnet --no-path \
1616
&& rm dotnet-install.sh
1717

0 commit comments

Comments
 (0)