Skip to content

Commit

Permalink
update setup-dotnet action to v4.0.1, remove hardcoded dotnet-version…
Browse files Browse the repository at this point in the history
… so latest will always be used.
  • Loading branch information
hahn-kev committed Aug 15, 2024
1 parent e5745ec commit 8c1dc9b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/l10n-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
tags: [ v* ]
workflow_dispatch:

concurrency:
concurrency:
group: ${{ github.workflow }}-package-l10ns
cancel-in-progress: true

Expand All @@ -25,9 +25,7 @@ jobs:

# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
with:
dotnet-version: 5.0.x
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe (Windows OS)
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/l10n-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
branches: [master]
workflow_dispatch:

concurrency:
concurrency:
group: ${{ github.workflow }}-update-l10n
cancel-in-progress: true

Expand All @@ -23,11 +23,9 @@ jobs:
with:
fetch-depth: 0

# Install the .NET Core workload
# Install the .NET Core workload
- name: Install .NET Core
uses: actions/setup-dotnet@3447fd6a9f9e57506b15f895c5b76d3b197dc7c2 # v3.2.0
with:
dotnet-version: 5.0.x
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1

# Add MSBuild to the PATH: https://github.com/microsoft/setup-msbuild
- name: Setup MSBuild.exe (Windows OS)
Expand Down

0 comments on commit 8c1dc9b

Please sign in to comment.