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/build-nuget-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Check for NuGet packages cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Check for NuGet packages cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-sdk-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # tag: v5.0.1
with:
dotnet-version: 10.0.100
dotnet-version: 10.0.101

- name: Run VerifySdkVersions
run: ./build.cmd VerifySdkVersions
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Check for NuGet packages cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Check for NuGet packages cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Check for NuGet packages cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Check for NuGet packages cache
uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # tag: v4.3.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

# If the analyze step fails for one of the languages you are analyzing with
# "We were unable to automatically build your code", modify the matrix above
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Setup .NET
uses: actions/setup-dotnet@2016bd2012dba4e32de620c46fe006a3ac9f0602 # tag: v5.0.1
with:
dotnet-version: 10.0.100
dotnet-version: 10.0.101

- name: dotnet format
run: dotnet format .\OpenTelemetry.AutoInstrumentation.sln --no-restore --verify-no-changes
4 changes: 2 additions & 2 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Test the PowerShell module instructions from README.md
shell: powershell
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Install MacOS CoreUtils
if: ${{ runner.os == 'macOS' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
dotnet-version: |
8.0.416
9.0.308
10.0.100
10.0.101

- name: Run BuildTracer and ManagedTests
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 }}
Expand Down
2 changes: 1 addition & 1 deletion docker/alpine.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:10.0.100-alpine3.22@sha256:7d98d5883675c6bca25b1db91f393b24b85125b5b00b405e55404fd6b8d2aead
FROM mcr.microsoft.com/dotnet/sdk:10.0.101-alpine3.22@sha256:0fba99926e4f12405c78f37941312f00c1aadb178bd63616f5d96fc2af5a26a9
RUN apk update \
&& apk upgrade \
&& apk add --no-cache --update \
Expand Down
2 changes: 1 addition & 1 deletion docker/centos-stream9.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN dnf install -y \
COPY ./scripts/dotnet-install.sh ./dotnet-install.sh

RUN chmod +x ./dotnet-install.sh \
&& ./dotnet-install.sh -v 10.0.100 --install-dir /usr/share/dotnet --no-path \
&& ./dotnet-install.sh -v 10.0.101 --install-dir /usr/share/dotnet --no-path \
&& ./dotnet-install.sh -v 9.0.308 --install-dir /usr/share/dotnet --no-path \
&& ./dotnet-install.sh -v 8.0.416 --install-dir /usr/share/dotnet --no-path \
&& rm dotnet-install.sh
Expand Down
4 changes: 2 additions & 2 deletions docker/debian-arm64.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0.308-bookworm-slim@sha256:4dceb990b7f76ae0b2f4e4fb1ac3485c3a354fb9fdaed767edb7590273508602
FROM mcr.microsoft.com/dotnet/sdk:9.0.308-bookworm-slim@sha256:6c7713b7d107f743015b863f6bb028fca7430192140536779c0464f1ece899bc
# There is no official base image for .NET SDK 10+ on Debian, so install .NET10 via dotnet-install

RUN apt-get update && \
Expand All @@ -11,7 +11,7 @@ COPY ./scripts/dotnet-install.sh ./dotnet-install.sh

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

Expand Down
2 changes: 1 addition & 1 deletion docker/debian.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:9.0.308-bookworm-slim@sha256:4dceb990b7f76ae0b2f4e4fb1ac3485c3a354fb9fdaed767edb7590273508602
FROM mcr.microsoft.com/dotnet/sdk:9.0.308-bookworm-slim@sha256:6c7713b7d107f743015b863f6bb028fca7430192140536779c0464f1ece899bc
# There is no official base image for .NET SDK 10+ on Debian, so install .NET10 via apt-get

RUN wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
Expand Down
Loading