Skip to content
Closed
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/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile --tag highbyte/sonarscan-dotnet:$(date +%s)
run: docker build . --file Dockerfile --tag dssldavidmorgan/sonarscan-dotnet:$(date +%s)
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ LABEL "com.github.actions.description"="SonarScanner for .NET 10 with pull reque
LABEL "com.github.actions.icon"="check-square"
LABEL "com.github.actions.color"="blue"

LABEL "org.opencontainers.image.source"="https://github.com/highbyte/sonarscan-dotnet"
LABEL "org.opencontainers.image.source"="https://github.com/dssldavidmorgan/sonarscan-dotnet"

LABEL "repository"="https://github.com/highbyte/sonarscan-dotnet"
LABEL "homepage"="https://github.com/highbyte"
LABEL "maintainer"="Highbyte"
LABEL "repository"="https://github.com/dssldavidmorgan/sonarscan-dotnet"
LABEL "homepage"="https://github.com/dssldavidmorgan"
LABEL "maintainer"="dssldavidmorgan"

# Version numbers of used software
ENV SONAR_SCANNER_DOTNET_TOOL_VERSION=11.0.0 \
DOTNETCORE_RUNTIME_VERSION=9.0 \
NODE_VERSION=22 \
JRE_VERSION=17
JRE_VERSION=21

# Add Microsoft Debian apt-get feed
RUN wget https://packages.microsoft.com/config/debian/12/packages-microsoft-prod.deb -O packages-microsoft-prod.deb \
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ SonarScanner for .NET for use in Github Actions, with automatic pull request det

``` yaml
- name: SonarScanner for .NET 10 with pull request decoration support
uses: highbyte/sonarscan-dotnet@v2.5.0
uses: dssldavidmorgan/sonarscan-dotnet@v1.0.0-alpha.2
with:
# The key of the SonarQube project
sonarProjectKey: your_projectkey
Expand All @@ -42,7 +42,7 @@ Also includes test results.

``` yaml
- name: SonarScanner for .NET 10 with pull request decoration support
uses: highbyte/sonarscan-dotnet@v2.5.0
uses: dssldavidmorgan/sonarscan-dotnet@v1.0.0-alpha.2
with:
# The key of the SonarQube project
sonarProjectKey: your_projectkey
Expand All @@ -65,7 +65,7 @@ Also includes test results.

``` yaml
- name: SonarScanner for .NET 10 with pull request decoration support
uses: highbyte/sonarscan-dotnet@v2.5.0
uses: dssldavidmorgan/sonarscan-dotnet@v1.0.0-alpha.2
with:
# The key of the SonarQube project
sonarProjectKey: your_projectkey
Expand All @@ -89,7 +89,7 @@ Also includes test results.

``` yaml
- name: SonarScanner for .NET 10 with pull request decoration support
uses: highbyte/sonarscan-dotnet@v2.5.0
uses: dssldavidmorgan/sonarscan-dotnet@v1.0.0-alpha.2
with:
# The key of the SonarQube project
sonarProjectKey: your_projectkey
Expand All @@ -109,7 +109,7 @@ Also includes test results.

``` yaml
- name: SonarScanner for .NET 10 with pull request decoration support
uses: highbyte/sonarscan-dotnet@v2.5.0
uses: dssldavidmorgan/sonarscan-dotnet@v1.0.0-alpha.2
with:
# The key of the SonarQube project
sonarProjectKey: your_projectkey
Expand All @@ -131,7 +131,7 @@ Also includes test results.

``` yaml
- name: SonarScanner for .NET 10 with pull request decoration support
uses: highbyte/sonarscan-dotnet@v2.5.0
uses: dssldavidmorgan/sonarscan-dotnet@v1.0.0-alpha.2
with:
# The key of the SonarQube project
sonarProjectKey: your_projectkey
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ inputs:

runs:
using: "docker"
image: "docker://ghcr.io/highbyte/sonarscan-dotnet:v2.5.0"
image: "docker://ghcr.io/dssldavidmorgan/sonarscan-dotnet:v1.0.0-alpha.2"

branding:
icon: 'check-square'
Expand Down