Skip to content

Commit 8ad2f8e

Browse files
chore(deps): update dependency workleap.dotnet.codingstandards to 1.1.22 (#103)
1 parent 5f34907 commit 8ad2f8e

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ on:
88
push:
99
branches:
1010
- "renovate/**"
11+
12+
# Prevent duplicate runs if Renovate falls back to creating a PR
13+
concurrency:
14+
group: ${{ github.workflow }}-${{ github.head_ref || github.ref_name }}
15+
cancel-in-progress: true
1116

1217
jobs:
1318
main:

AzureCliCredentialProxy.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22
<PropertyGroup>
3-
<TargetFramework>net8.0</TargetFramework>
3+
<TargetFramework>net9.0</TargetFramework>
44
<Nullable>enable</Nullable>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<JsonSerializerIsReflectionEnabledByDefault>false</JsonSerializerIsReflectionEnabledByDefault>
@@ -14,7 +14,7 @@
1414

1515
<ItemGroup>
1616
<PackageReference Include="Azure.Identity" Version="1.15.0" />
17-
<PackageReference Include="Workleap.DotNet.CodingStandards" Version="1.1.14">
17+
<PackageReference Include="Workleap.DotNet.CodingStandards" Version="1.1.22">
1818
<PrivateAssets>all</PrivateAssets>
1919
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2020
</PackageReference>

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://github.com/Azure/azure-cli/issues/19591
22
# https://iceburn.medium.com/azure-cli-docker-containers-7059750be1f2
3-
FROM mcr.microsoft.com/dotnet/runtime-deps:8.0-alpine AS base
3+
FROM mcr.microsoft.com/dotnet/runtime-deps:9.0-alpine AS base
44
ENV DOTNET_CLI_TELEMETRY_OPTOUT=true \
55
AZ_INSTALLER=DOCKER
66
RUN apk add --no-cache py3-pip && \
@@ -13,7 +13,7 @@ ENV ASPNETCORE_URLS=http://+:8080
1313
ENV AZURE_CONFIG_DIR=/app/.azure
1414

1515

16-
FROM mcr.microsoft.com/dotnet/sdk:8.0-alpine AS publish
16+
FROM mcr.microsoft.com/dotnet/sdk:9.0-alpine AS publish
1717
WORKDIR /src
1818
COPY . .
1919

global.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.413",
3+
"version": "9.0.304",
44
"rollForward": "latestMinor",
55
"allowPrerelease": false
66
}

0 commit comments

Comments
 (0)