Skip to content

Commit

Permalink
Bump .NET to 8.0.101/7.0.405/6.0.417 (#404)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kielek authored Jan 18, 2024
1 parent 45c53f9 commit 952a74c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 16 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
- uses: actions/[email protected]
with:
dotnet-version: |
6.0.417
7.0.404
8.0.100
6.0.418
7.0.405
8.0.101
- run: ./build.cmd Workflow
- run: brew install coreutils
if: ${{ runner.os == 'macOS' }}
Expand Down Expand Up @@ -119,9 +119,9 @@ jobs:
- uses: actions/[email protected]
with:
dotnet-version: |
6.0.417
7.0.404
8.0.100
6.0.418
7.0.405
8.0.101
- run: ./build.cmd NuGetWorkflow
- uses: actions/[email protected]
with:
Expand All @@ -144,9 +144,9 @@ jobs:
- uses: actions/[email protected]
with:
dotnet-version: |
6.0.417
7.0.404
8.0.100
6.0.418
7.0.405
8.0.101
- name: Download NuGet Artifacts from build-nuget-package job
uses: actions/[email protected]
with:
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 @@ -20,7 +20,7 @@ jobs:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
dotnet-version: 8.0.100
dotnet-version: 8.0.101

- name: dotnet format
run: dotnet format ./Splunk.OpenTelemetry.AutoInstrumentation.sln --no-restore --verify-no-changes
4 changes: 2 additions & 2 deletions .github/workflows/scripts-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
dotnet-version: 8.0.100
dotnet-version: 8.0.101
- name: Test the PowerShell module instructions from README.md
shell: powershell
run: |
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
steps:
- uses: actions/[email protected]
with:
dotnet-version: 7.0.404
dotnet-version: 7.0.405
- run: brew install coreutils
if: ${{ runner.os == 'macOS' }}
- name: Create test directory
Expand Down
8 changes: 4 additions & 4 deletions 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.100-alpine3.18
FROM mcr.microsoft.com/dotnet/sdk:8.0.101-alpine3.18

RUN apk update \
&& apk upgrade \
Expand All @@ -20,10 +20,10 @@ ENV gRPC_PluginFullPath=/usr/bin/grpc_csharp_plugin
# Install older sdks using the install script
RUN curl -sSL https://dot.net/v1/dotnet-install.sh --output dotnet-install.sh \
&& echo "SHA256: $(sha256sum dotnet-install.sh)" \
&& echo "4f699579f6171f04fb70829ad9cc5958e7db52e6da8da5df2db43ebba76a61d6 dotnet-install.sh" | sha256sum -c \
&& echo "ff2ff47318ffff0af9a6395ca6308b54376fba8c97a3a5eba3e848b0caf17b58 dotnet-install.sh" | sha256sum -c \
&& chmod +x ./dotnet-install.sh \
&& ./dotnet-install.sh -v 6.0.417 --install-dir /usr/share/dotnet --no-path \
&& ./dotnet-install.sh -v 7.0.404 --install-dir /usr/share/dotnet --no-path \
&& ./dotnet-install.sh -v 6.0.418 --install-dir /usr/share/dotnet --no-path \
&& ./dotnet-install.sh -v 7.0.405 --install-dir /usr/share/dotnet --no-path \
&& rm dotnet-install.sh

WORKDIR /project

0 comments on commit 952a74c

Please sign in to comment.