Skip to content

Commit

Permalink
Bump .NET SDK to 8.0.402 (#3663)
Browse files Browse the repository at this point in the history
* Bump dotnet/sdk in /docker

Bumps dotnet/sdk from 8.0.401-1-bookworm-slim to 8.0.402-bookworm-slim.

---
updated-dependencies:
- dependency-name: dotnet/sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>

* Bump .NET SDK to 8.0.402

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Piotr Kiełkowicz <[email protected]>
  • Loading branch information
dependabot[bot] and Kielek authored Sep 25, 2024
1 parent 68e750b commit 611d7f2
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-nuget-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- name: Check for NuGet packages cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- name: Check for NuGet packages cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- name: Check for NuGet packages cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
Expand Down Expand Up @@ -133,7 +133,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- name: Check for NuGet packages cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- name: Check for NuGet packages cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- name: Check for NuGet packages cache
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # tag: v4.0.2
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 @@ -25,7 +25,7 @@ jobs:
- name: Setup .NET 8
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # tag: v4.0.1
with:
dotnet-version: 8.0.401
dotnet-version: 8.0.402

- 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 @@ -15,7 +15,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- name: Test the PowerShell module instructions from README.md
shell: powershell
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
dotnet-version: |
6.0.425
7.0.410
8.0.401
8.0.402
- 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: |
6.0.425
7.0.410
8.0.401
8.0.402
- 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:8.0.401-1-alpine3.19
FROM mcr.microsoft.com/dotnet/sdk:8.0.402-alpine3.19
RUN apk update \
&& apk upgrade \
&& apk add --no-cache --update \
Expand Down
2 changes: 1 addition & 1 deletion docker/debian-arm64.dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:8.0.401-1-bookworm-slim
FROM mcr.microsoft.com/dotnet/sdk:8.0.402-bookworm-slim

RUN apt-get update && \
apt-get install -y \
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:8.0.401-1-bookworm-slim
FROM mcr.microsoft.com/dotnet/sdk:8.0.402-bookworm-slim

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

0 comments on commit 611d7f2

Please sign in to comment.