Skip to content

Commit 27090e1

Browse files
authored
Bump .NET SDK to 8.0.204/7.0.408/6.0.421 (#461)
1 parent 577ce5d commit 27090e1

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
- uses: actions/[email protected]
2828
with:
2929
dotnet-version: |
30-
6.0.420
31-
7.0.407
32-
8.0.203
30+
6.0.421
31+
7.0.408
32+
8.0.204
3333
- run: ./build.cmd Workflow
3434
- run: brew install coreutils
3535
if: ${{ runner.os == 'macOS' }}
@@ -119,9 +119,9 @@ jobs:
119119
- uses: actions/[email protected]
120120
with:
121121
dotnet-version: |
122-
6.0.420
123-
7.0.407
124-
8.0.203
122+
6.0.421
123+
7.0.408
124+
8.0.204
125125
- run: ./build.cmd NuGetWorkflow
126126
- uses: actions/[email protected]
127127
with:
@@ -144,9 +144,9 @@ jobs:
144144
- uses: actions/[email protected]
145145
with:
146146
dotnet-version: |
147-
6.0.420
148-
7.0.407
149-
8.0.203
147+
6.0.421
148+
7.0.408
149+
8.0.204
150150
- name: Download NuGet Artifacts from build-nuget-package job
151151
uses: actions/[email protected]
152152
with:

.github/workflows/dotnet-format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/[email protected]
2121
- uses: actions/[email protected]
2222
with:
23-
dotnet-version: 8.0.203
23+
dotnet-version: 8.0.204
2424

2525
- name: dotnet format
2626
run: dotnet format ./Splunk.OpenTelemetry.AutoInstrumentation.sln --no-restore --verify-no-changes

.github/workflows/scripts-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
steps:
1111
- uses: actions/[email protected]
1212
with:
13-
dotnet-version: 8.0.203
13+
dotnet-version: 8.0.204
1414
- name: Test the PowerShell module instructions from README.md
1515
shell: powershell
1616
run: |
@@ -52,7 +52,7 @@ jobs:
5252
steps:
5353
- uses: actions/[email protected]
5454
with:
55-
dotnet-version: 7.0.407
55+
dotnet-version: 7.0.408
5656
- run: brew install coreutils
5757
if: ${{ runner.os == 'macOS' }}
5858
- name: Create test directory

docker/alpine.dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM mcr.microsoft.com/dotnet/sdk:8.0.203-alpine3.18
1+
FROM mcr.microsoft.com/dotnet/sdk:8.0.204-alpine3.18
22

33
RUN apk update \
44
&& apk upgrade \
@@ -22,8 +22,8 @@ RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \
2222
&& echo "SHA256: $(sha256sum dotnet-install.sh)" \
2323
&& echo "170a3ec239a351f8d7c14bec424b286bd9468f4d928bdb7600f6424ea7f13927 dotnet-install.sh" | sha256sum -c \
2424
&& chmod +x ./dotnet-install.sh \
25-
&& ./dotnet-install.sh -v 6.0.420 --install-dir /usr/share/dotnet --no-path \
26-
&& ./dotnet-install.sh -v 7.0.407 --install-dir /usr/share/dotnet --no-path \
25+
&& ./dotnet-install.sh -v 6.0.421 --install-dir /usr/share/dotnet --no-path \
26+
&& ./dotnet-install.sh -v 7.0.408 --install-dir /usr/share/dotnet --no-path \
2727
&& rm dotnet-install.sh
2828

2929
WORKDIR /project

0 commit comments

Comments
 (0)