From 795e7979172e878bb00edda48a76a641e79c4225 Mon Sep 17 00:00:00 2001 From: Harald Nagel Date: Wed, 13 Mar 2024 15:19:00 -0700 Subject: [PATCH] Fix broken Docker container tag --- CHANGELOG.md | 7 +++++++ Dockerfile | 2 +- README.md | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7245b97..921d589 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/). +## [4.1] - 2023-03-13 + +### Fixed + +- Fix invalid Docker container tag + ## [4] - 2023-03-13 ### Updated @@ -28,6 +34,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/). - GitHub Action for using dotnet outdated +[4.1]: https://github.com/MCLD/dotnet-outdated-action/tree/v4.1 [4]: https://github.com/MCLD/dotnet-outdated-action/tree/v4 [3]: https://github.com/MCLD/dotnet-outdated-action/tree/v3 [2]: https://github.com/MCLD/dotnet-outdated-action/tree/v2 diff --git a/Dockerfile b/Dockerfile index 2f6437c..bb58bb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM mcr.microsoft.com/dotnet/sdk:8 +FROM mcr.microsoft.com/dotnet/sdk:8.0 RUN dotnet tool install --global dotnet-outdated-tool diff --git a/README.md b/README.md index bfd9068..9685f13 100644 --- a/README.md +++ b/README.md @@ -19,12 +19,12 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: mcld/dotnet-outdated-action@v4 + - uses: mcld/dotnet-outdated-action@v4.1 ``` ## Version History -- v4: .NET Core 8 +- v4.1: .NET Core 8 - v3: .NET Core 7 - v2: .NET Core 6 - v1: .NET Core 5