Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump .NET to 8.0.101/7.0.405/6.0.417 #404

Merged
merged 1 commit into from
Jan 18, 2024
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
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
Loading