renovatebot / renovate

Home of the Renovate CLI: Cross-platform Dependency Automation by Mend.io
https://mend.io/renovate
GNU Affero General Public License v3.0
17.4k stars 2.28k forks source link

Renovate removes additional variables from version when bumping Docker image versions #12420

Closed JustArchi closed 2 years ago

JustArchi commented 2 years ago

How are you running Renovate?

WhiteSource Renovate hosted app on github.com

Please select which platform you are using if self-hosting.

No response

If you're self-hosting Renovate, tell us what version of Renovate you run.

No response

Describe the bug

Please check out https://github.com/JustArchiNET/ArchiSteamFarm/pull/2440 for reproduction example.

I have a FROM Dockerfile clause that includes optional variable:

FROM --platform=$BUILDPLATFORM mcr.microsoft.com/dotnet/sdk:5.0${IMAGESUFFIX} AS build-dotnet

${IMAGESUFFIX} allows users to easily specify -alpine if they wanted to create Alpine build instead of the default Debian one. It's quite useful as it doesn't force me to build several dockerfiles with exactly the same declaration.

Unfortunately, renovate isn't aware of such situation existing, and I'm not surprised, it's amazing it didn't outright crash with that. In any case, it tried to update 5.0${IMAGESUFFIX} -> 6.0, which is technically correct, but removes the argument that existed there before.

I know this is rather a very specific case, but I think it'd be cool if renovate was aware of variables existing in Dockerfile, in particular next to the version itself. From my analysis of the debug log (attached below), renovate is unaware of ${IMAGESUFFIX} being a variable, which results in treating whole 5.0${IMAGESUFFIX} block as a version. A very simple logic of ignoring ${...} blocks, so variables, when parsing the version would fix my problem entirely. With that logic, Renovate would update 5.0${IMAGESUFFIX} -> 6.0${IMAGESUFFIX}.

Basically:

{
            "depName": "mcr.microsoft.com/dotnet/sdk",
            "currentValue": "5.0${IMAGESUFFIX}",
            "replaceString": "mcr.microsoft.com/dotnet/sdk:5.0${IMAGESUFFIX}",
            "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}"
}

Should be:

{
            "depName": "mcr.microsoft.com/dotnet/sdk",
            "currentValue": "5.0",
            "replaceString": "mcr.microsoft.com/dotnet/sdk:5.0",
            "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}"
}

If by any chance my provided info is not enough and you'd prefer to isolate this in standalone repo, this simple Dockerfile should be enough:

ARG IMAGESUFFIX

FROM mcr.microsoft.com/dotnet/sdk:5.0${IMAGESUFFIX} AS build-dotnet
RUN echo repro
ENTRYPOINT ["sh"]

Unfortunately I'm not skilled in ts enough to fix it on my own in a PR.

Thank you in advance for considering this issue.

Relevant debug logs

Logs ``` DEBUG: No dangling containers to remove INFO: Repository started { "renovateVersion": "28.20.0" } DEBUG: Using localDir: /mnt/renovate/gh/JustArchiNET/ArchiSteamFarm DEBUG: Repository cache is valid DEBUG: initRepo("JustArchiNET/ArchiSteamFarm") DEBUG: Overriding default GitHub endpoint { "endpoint": "https://api.github.com/" } DEBUG: JustArchiNET/ArchiSteamFarm default branch = main DEBUG: Using app token for git init DEBUG: resetMemCache() DEBUG: Resetting npmrc DEBUG: detectSemanticCommits() DEBUG: checkOnboarding() DEBUG: isOnboarded() DEBUG: Checking cached config file name DEBUG: Existing config file confirmed DEBUG: Repo is onboarded DEBUG: migrateAndValidate() DEBUG: No config migration necessary DEBUG: massaged config { "config": { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "github>whitesource/merge-confidence:beta", "config:base", ":assignee(JustArchi)", ":automergeBranch", ":automergeDigest", ":automergeMinor", ":disableDependencyDashboard", ":disableRateLimiting", ":label(🤖 Automatic)" ], "git-submodules": { "enabled": true }, "packageRules": [ { "allowedVersions": "<= 3.1", "matchPackageNames": [ "Microsoft.Extensions.Configuration.Json", "Microsoft.Extensions.Logging.Configuration" ] }, { "allowedVersions": "<= 2.2.4", "groupName": "MSTest packages", "matchPackagePatterns": [ "^MSTest\\..+" ] } ] } } DEBUG: migrated config { "config": { "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "github>whitesource/merge-confidence:beta", "config:base", ":assignee(JustArchi)", ":automergeBranch", ":automergeDigest", ":automergeMinor", ":disableDependencyDashboard", ":disableRateLimiting", ":label(🤖 Automatic)" ], "git-submodules": { "enabled": true }, "packageRules": [ { "allowedVersions": "<= 3.1", "matchPackageNames": [ "Microsoft.Extensions.Configuration.Json", "Microsoft.Extensions.Logging.Configuration" ] }, { "allowedVersions": "<= 2.2.4", "groupName": "MSTest packages", "matchPackagePatterns": [ "^MSTest\\..+" ] } ] } } DEBUG: Setting hostRules from config DEBUG: Found repo ignorePaths { "ignorePaths": [ "**/node_modules/**", "**/bower_components/**", "**/vendor/**", "**/examples/**", "**/__tests__/**", "**/test/**", "**/tests/**", "**/__fixtures__/**" ] } DEBUG: No vulnerability alerts found DEBUG: No vulnerability alerts found DEBUG: No baseBranches DEBUG: extract() DEBUG: Setting current branch to main DEBUG: Initializing git repository into /mnt/renovate/gh/JustArchiNET/ArchiSteamFarm DEBUG: Performing blobless clone DEBUG: git clone completed { "durationMs": 2566 } DEBUG: latest repository commit { "latestCommit": { "hash": "392fdcb633a3188ec2b78aa40b23db9a8091bd2c", "date": "2021-11-01T00:47:15+01:00", "message": "Add DebugFast target", "refs": "HEAD -> main, origin/main, origin/HEAD", "body": "Useful for faster compilation before we get down to warnings and code improvements\n", "author_name": "Archi", "author_email": "JustArchi@JustArchi.net" } } DEBUG: latest commit { "branchName": "main", "latestCommitDate": "2021-11-01T00:47:15+01:00" } DEBUG: Using file match: (^|/)tasks/[^/]+\.ya?ml$ for manager ansible DEBUG: Using file match: (^|/)requirements\.ya?ml$ for manager ansible-galaxy DEBUG: Using file match: (^|/)galaxy\.ya?ml$ for manager ansible-galaxy DEBUG: Using file match: azure.*pipelines?.*\.ya?ml$ for manager azure-pipelines DEBUG: Using file match: (^|/)batect(-bundle)?\.yml$ for manager batect DEBUG: Using file match: (^|/)batect$ for manager batect-wrapper DEBUG: Using file match: (^|/)WORKSPACE(|\.bazel)$ for manager bazel DEBUG: Using file match: \.bzl$ for manager bazel DEBUG: Using file match: (^|/)\.?bitbucket-pipelines\.ya?ml$ for manager bitbucket-pipelines DEBUG: Using file match: buildkite\.ya?ml for manager buildkite DEBUG: Using file match: \.buildkite/.+\.ya?ml$ for manager buildkite DEBUG: Using file match: (^|/)Gemfile$ for manager bundler DEBUG: Using file match: \.cake$ for manager cake DEBUG: Using file match: (^|/)Cargo.toml$ for manager cargo DEBUG: Using file match: (^|/).circleci/config.yml$ for manager circleci DEBUG: Using file match: (^|/)cloudbuild.ya?ml for manager cloudbuild DEBUG: Using file match: (^|/)Podfile$ for manager cocoapods DEBUG: Using file match: (^|/)([\w-]*)composer.json$ for manager composer DEBUG: Using file match: (^|/)deps\.edn$ for manager deps-edn DEBUG: Using file match: (^|/)docker-compose[^/]*\.ya?ml$ for manager docker-compose DEBUG: Using file match: (^|/|\.)Dockerfile$ for manager dockerfile DEBUG: Using file match: (^|/)Dockerfile\.[^/]*$ for manager dockerfile DEBUG: Using file match: (^|/).drone.yml$ for manager droneci DEBUG: Using file match: (^|/).gitmodules$ for manager git-submodules DEBUG: Using file match: ^(workflow-templates|\.github\/workflows)\/[^/]+\.ya?ml$ for manager github-actions DEBUG: Using file match: (^|\/)action\.ya?ml$ for manager github-actions DEBUG: Using file match: \.gitlab-ci\.yml$ for manager gitlabci DEBUG: Using file match: \.gitlab-ci\.yml$ for manager gitlabci-include DEBUG: Using file match: (^|/)go.mod$ for manager gomod DEBUG: Using file match: \.gradle(\.kts)?$ for manager gradle DEBUG: Using file match: (^|\/)gradle\.properties$ for manager gradle DEBUG: Using file match: (^|\/)gradle\/.+\.toml$ for manager gradle DEBUG: Using file match: \.versions\.toml$ for manager gradle DEBUG: Using file match: (^|/)gradle/wrapper/gradle-wrapper.properties$ for manager gradle-wrapper DEBUG: Using file match: (^|/)requirements\.yaml$ for manager helm-requirements DEBUG: Using file match: (^|/)values.yaml$ for manager helm-values DEBUG: Using file match: (^|/)helmfile.yaml$ for manager helmfile DEBUG: Using file match: (^|/)Chart.yaml$ for manager helmv3 DEBUG: Using file match: ^Formula/[^/]+[.]rb$ for manager homebrew DEBUG: Using file match: \.html?$ for manager html DEBUG: Using file match: (^|/)plugins\.(txt|ya?ml)$ for manager jenkins DEBUG: Using file match: (^|/)kustomization\.yaml for manager kustomize DEBUG: Using file match: (^|/)project\.clj$ for manager leiningen DEBUG: Using file match: \.pom\.xml$ for manager maven DEBUG: Using file match: (^|/)pom\.xml$ for manager maven DEBUG: Using file match: (^|/)package.js$ for manager meteor DEBUG: Using file match: (^|/)mix\.exs$ for manager mix DEBUG: Using file match: (^|/).node-version$ for manager nodenv DEBUG: Using file match: (^|/)package.json$ for manager npm DEBUG: Using file match: \.(?:cs|fs|vb)proj$ for manager nuget DEBUG: Using file match: \.(?:props|targets)$ for manager nuget DEBUG: Using file match: \.config\/dotnet-tools\.json$ for manager nuget DEBUG: Using file match: (^|//)global\.json$ for manager nuget DEBUG: Using file match: (^|/)\.nvmrc$ for manager nvm DEBUG: Using file match: (^|/)([\w-]*)requirements\.(txt|pip)$ for manager pip_requirements DEBUG: Using file match: (^|/)setup.py$ for manager pip_setup DEBUG: Using file match: (^|/)Pipfile$ for manager pipenv DEBUG: Using file match: (^|/)pyproject\.toml$ for manager poetry DEBUG: Using file match: (^|/)\.pre-commit-config\.yaml$ for manager pre-commit DEBUG: Using file match: (^|/)pubspec\.ya?ml$ for manager pub DEBUG: Using file match: (^|/).python-version$ for manager pyenv DEBUG: Using file match: (^|/)\.ruby-version$ for manager ruby-version DEBUG: Using file match: \.sbt$ for manager sbt DEBUG: Using file match: project/[^/]*.scala$ for manager sbt DEBUG: Using file match: (^|/)setup\.cfg$ for manager setup-cfg DEBUG: Using file match: (^|/)Package\.swift for manager swift DEBUG: Using file match: \.tf$ for manager terraform DEBUG: Using file match: (^|/)\.terraform-version$ for manager terraform-version DEBUG: Using file match: (^|/)terragrunt\.hcl$ for manager terragrunt DEBUG: Using file match: (^|/)\.terragrunt-version$ for manager terragrunt-version DEBUG: Using file match: ^.travis.yml$ for manager travis DEBUG: Matched 2 file(s) for manager dockerfile: Dockerfile, Dockerfile.Service DEBUG: Matched 1 file(s) for manager git-submodules: .gitmodules DEBUG: Matched 8 file(s) for manager github-actions: .github/workflows/ci.yml, .github/workflows/docker-ci.yml, .github/workflows/docker-publish-latest.yml, .github/workflows/docker-publish-main.yml, .github/workflows/docker-publish-released.yml, .github/workflows/lock-threads.yml, .github/workflows/publish.yml, .github/workflows/translations.yml DEBUG: Matched 4 file(s) for manager html: ArchiSteamFarm/overlay/all/Changelog.html, ArchiSteamFarm/overlay/all/ConfigGenerator.html, ArchiSteamFarm/overlay/all/Manual.html, ArchiSteamFarm/overlay/all/UI.html DEBUG: Matched 7 file(s) for manager nuget: ArchiSteamFarm.CustomPlugins.ExamplePlugin/ArchiSteamFarm.CustomPlugins.ExamplePlugin.csproj, ArchiSteamFarm.CustomPlugins.PeriodicGC/ArchiSteamFarm.CustomPlugins.PeriodicGC.csproj, ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper.csproj, ArchiSteamFarm.Tests/ArchiSteamFarm.Tests.csproj, ArchiSteamFarm/ArchiSteamFarm.csproj, Directory.Build.props, Directory.Packages.props DEBUG: Found a multistage build stage name DEBUG: Found a multistage build stage name DEBUG: Found a multistage build stage name DEBUG: Skipping alias COPY --from { "image": "build-node" } DEBUG: Skipping alias COPY --from { "image": "build-dotnet" } DEBUG: Found a multistage build stage name DEBUG: Found a multistage build stage name DEBUG: Found a multistage build stage name DEBUG: Skipping alias COPY --from { "image": "build-node" } DEBUG: Skipping alias COPY --from { "image": "build-dotnet" } DEBUG: Found dockerfile package files DEBUG: Found git-submodules package files DEBUG: Found github-actions package files DEBUG: Found nuget package files DEBUG: Found 18 package file(s) INFO: Dependency extraction complete { "baseBranch": "main", "stats": { "managers": { "dockerfile": { "fileCount": 2, "depCount": 6 }, "git-submodules": { "fileCount": 1, "depCount": 2 }, "github-actions": { "fileCount": 8, "depCount": 59 }, "nuget": { "fileCount": 7, "depCount": 82 } }, "total": { "fileCount": 18, "depCount": 149 } } } DEBUG: Dependency node has unsupported value lts${IMAGESUFFIX} DEBUG: Dependency node has unsupported value lts${IMAGESUFFIX} DEBUG: Dependency Microsoft.AspNetCore.Mvc.Core has unsupported value undefined DEBUG: Dependency JustArchiNET.Madness has unsupported value undefined DEBUG: Dependency System.Composition.AttributedModel has unsupported value undefined DEBUG: Dependency SteamKit2 has unsupported value undefined DEBUG: Dependency Newtonsoft.Json has unsupported value undefined DEBUG: Dependency System.Composition.AttributedModel has unsupported value undefined DEBUG: Dependency ConfigureAwaitChecker.Analyzer has unsupported value undefined DEBUG: Dependency JustArchiNET.Madness has unsupported value undefined DEBUG: Dependency System.Composition.AttributedModel has unsupported value undefined DEBUG: Dependency Swashbuckle.AspNetCore.Annotations has unsupported value undefined DEBUG: Dependency SteamKit2 has unsupported value undefined DEBUG: Dependency Newtonsoft.Json has unsupported value undefined DEBUG: Dependency MSTest.TestFramework has unsupported value undefined DEBUG: Dependency MSTest.TestAdapter has unsupported value undefined DEBUG: Dependency Microsoft.NET.Test.Sdk has unsupported value undefined DEBUG: Dependency ConfigureAwaitChecker.Analyzer has unsupported value undefined DEBUG: Dependency Microsoft.Extensions.Logging.Configuration has unsupported value undefined DEBUG: Dependency Microsoft.Extensions.Configuration.Json has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.WebSockets has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.Server.Kestrel has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.ResponseCompression has unsupported value undefined DEBUG: Dependency ConfigureAwaitChecker.Analyzer has unsupported value undefined DEBUG: Dependency JetBrains.Annotations has unsupported value undefined DEBUG: Dependency ConfigureAwaitChecker.Analyzer has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.ResponseCaching has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.Localization has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.HttpOverrides has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.Diagnostics has unsupported value undefined DEBUG: Dependency Microsoft.AspNetCore.Cors has unsupported value undefined DEBUG: Dependency JustArchiNET.Madness has unsupported value undefined DEBUG: Dependency System.Security.Cryptography.ProtectedData has unsupported value undefined DEBUG: Dependency System.IO.FileSystem.AccessControl has unsupported value undefined DEBUG: Dependency zxcvbn-core has unsupported value undefined DEBUG: Dependency System.Linq.Async has unsupported value undefined DEBUG: Dependency System.Composition has unsupported value undefined DEBUG: Dependency Swashbuckle.AspNetCore.Newtonsoft has unsupported value undefined DEBUG: Dependency Swashbuckle.AspNetCore.Annotations has unsupported value undefined DEBUG: Dependency Swashbuckle.AspNetCore has unsupported value undefined DEBUG: Dependency SteamKit2 has unsupported value undefined DEBUG: Dependency NLog.Web.AspNetCore has unsupported value undefined DEBUG: Dependency Nito.AsyncEx.Coordination has unsupported value undefined DEBUG: Dependency Newtonsoft.Json has unsupported value undefined DEBUG: Dependency Markdig.Signed has unsupported value undefined DEBUG: Dependency JetBrains.Annotations has unsupported value undefined DEBUG: Dependency Humanizer has unsupported value undefined DEBUG: Dependency CryptSharpStandard has unsupported value undefined DEBUG: Dependency ConfigureAwaitChecker.Analyzer has unsupported value undefined DEBUG: Dependency AngleSharp.XPath has unsupported value undefined DEBUG: getLabels(https://mcr.microsoft.com, dotnet/sdk, latest) DEBUG: getLabels(https://mcr.microsoft.com, dotnet/aspnet, latest) DEBUG: Found no results from datasource that look like a version (wiki)(dependency="wiki") { "result": { "sourceUrl": "https://github.com/JustArchiNET/ArchiSteamFarm.wiki", "releases": [] } } DEBUG: Found no results from datasource that look like a version (ASF-ui)(dependency="ASF-ui") { "result": { "sourceUrl": "https://github.com/JustArchiNET/ASF-ui", "releases": [] } } DEBUG: No registry auth required { "registryHost": "https://mcr.microsoft.com" } DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "Microsoft.Extensions.Logging.Configuration" } DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "Microsoft.Extensions.Configuration.Json" } DEBUG: getLabels(https://mcr.microsoft.com, dotnet/runtime-deps, latest) DEBUG: getManifestResponse(https://mcr.microsoft.com, dotnet/runtime-deps, latest) DEBUG: No registry auth required { "registryHost": "https://mcr.microsoft.com" } DEBUG: getManifestResponse(https://mcr.microsoft.com, dotnet/runtime-deps, sha256:b92d9c02e7ee37c33aa3ab12abeade6643c99e19e9567a3d295347dbaee53647) DEBUG: No registry auth required { "registryHost": "https://mcr.microsoft.com" } DEBUG: No registry auth required { "registryHost": "https://mcr.microsoft.com" } DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "MSTest.TestAdapter" } DEBUG: Falling back to npm semver syntax for allowedVersions { "depName": "MSTest.TestFramework" } DEBUG: Package releases lookups complete { "baseBranch": "main" } DEBUG: branchifyUpgrades DEBUG: 8 flattened updates found: mcr.microsoft.com/dotnet/sdk, mcr.microsoft.com/dotnet/sdk, mcr.microsoft.com/dotnet/aspnet, mcr.microsoft.com/dotnet/aspnet, mcr.microsoft.com/dotnet/sdk, mcr.microsoft.com/dotnet/sdk, mcr.microsoft.com/dotnet/runtime-deps, mcr.microsoft.com/dotnet/runtime-deps DEBUG: Returning 6 branch(es) DEBUG: config.repoIsOnboarded=true DEBUG: packageFiles with updates { "config": { "dockerfile": [ { "packageFile": "Dockerfile", "deps": [ { "depName": "node", "currentValue": "lts${IMAGESUFFIX}", "replaceString": "node:lts${IMAGESUFFIX}", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "stage", "depIndex": 0, "updates": [], "warnings": [], "versioning": "docker", "skipReason": "invalid-value" }, { "depName": "mcr.microsoft.com/dotnet/sdk", "currentValue": "5.0${IMAGESUFFIX}", "replaceString": "mcr.microsoft.com/dotnet/sdk:5.0${IMAGESUFFIX}", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "stage", "depIndex": 1, "updates": [ { "bucket": "non-major", "newVersion": "5.0", "newValue": "5.0", "newMajor": 5, "newMinor": 0, "updateType": "patch", "branchName": "renovate/mcr.microsoft.com-dotnet-sdk-5.x" }, { "bucket": "major", "newVersion": "6.0", "newValue": "6.0", "newMajor": 6, "newMinor": 0, "updateType": "major", "branchName": "renovate/mcr.microsoft.com-dotnet-sdk-6.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "5.0${IMAGESUFFIX}", "isSingleVersion": true, "fixedVersion": "5.0${IMAGESUFFIX}" }, { "depName": "mcr.microsoft.com/dotnet/aspnet", "currentValue": "5.0${IMAGESUFFIX}", "replaceString": "mcr.microsoft.com/dotnet/aspnet:5.0${IMAGESUFFIX}", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "final", "depIndex": 2, "updates": [ { "bucket": "non-major", "newVersion": "5.0", "newValue": "5.0", "newMajor": 5, "newMinor": 0, "updateType": "patch", "branchName": "renovate/mcr.microsoft.com-dotnet-aspnet-5.x" }, { "bucket": "major", "newVersion": "6.0", "newValue": "6.0", "newMajor": 6, "newMinor": 0, "updateType": "major", "branchName": "renovate/mcr.microsoft.com-dotnet-aspnet-6.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "5.0${IMAGESUFFIX}", "isSingleVersion": true, "fixedVersion": "5.0${IMAGESUFFIX}" } ] }, { "packageFile": "Dockerfile.Service", "deps": [ { "depName": "node", "currentValue": "lts${IMAGESUFFIX}", "replaceString": "node:lts${IMAGESUFFIX}", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "stage", "depIndex": 0, "updates": [], "warnings": [], "versioning": "docker", "skipReason": "invalid-value" }, { "depName": "mcr.microsoft.com/dotnet/sdk", "currentValue": "5.0${IMAGESUFFIX}", "replaceString": "mcr.microsoft.com/dotnet/sdk:5.0${IMAGESUFFIX}", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "stage", "depIndex": 1, "updates": [ { "bucket": "non-major", "newVersion": "5.0", "newValue": "5.0", "newMajor": 5, "newMinor": 0, "updateType": "patch", "branchName": "renovate/mcr.microsoft.com-dotnet-sdk-5.x" }, { "bucket": "major", "newVersion": "6.0", "newValue": "6.0", "newMajor": 6, "newMinor": 0, "updateType": "major", "branchName": "renovate/mcr.microsoft.com-dotnet-sdk-6.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "5.0${IMAGESUFFIX}", "isSingleVersion": true, "fixedVersion": "5.0${IMAGESUFFIX}" }, { "depName": "mcr.microsoft.com/dotnet/runtime-deps", "currentValue": "5.0${IMAGESUFFIX}", "replaceString": "mcr.microsoft.com/dotnet/runtime-deps:5.0${IMAGESUFFIX}", "autoReplaceStringTemplate": "{{depName}}{{#if newValue}}:{{newValue}}{{/if}}{{#if newDigest}}@{{newDigest}}{{/if}}", "datasource": "docker", "depType": "final", "depIndex": 2, "updates": [ { "bucket": "non-major", "newVersion": "5.0", "newValue": "5.0", "newMajor": 5, "newMinor": 0, "updateType": "patch", "branchName": "renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x" }, { "bucket": "major", "newVersion": "6.0", "newValue": "6.0", "newMajor": 6, "newMinor": 0, "updateType": "major", "branchName": "renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x" } ], "warnings": [], "versioning": "docker", "currentVersion": "5.0${IMAGESUFFIX}", "isSingleVersion": true, "fixedVersion": "5.0${IMAGESUFFIX}" } ] } ], "git-submodules": [ { "packageFile": ".gitmodules", "deps": [ { "depName": "ASF-ui", "lookupName": "https://github.com/JustArchiNET/ASF-ui.git", "currentValue": "main", "currentDigest": "240819d7a1497e4c66d8b23dff6b8eaf8f794f4a", "depIndex": 0, "updates": [], "warnings": [], "versioning": "git", "sourceUrl": "https://github.com/JustArchiNET/ASF-ui", "currentVersion": "main", "fixedVersion": "main" }, { "depName": "wiki", "lookupName": "https://github.com/JustArchiNET/ArchiSteamFarm.wiki.git", "currentValue": "master", "currentDigest": "659fdc33672ead0dda3668d19e03e38c31f13935", "depIndex": 1, "updates": [], "warnings": [], "versioning": "git", "sourceUrl": "https://github.com/JustArchiNET/ArchiSteamFarm.wiki", "currentVersion": "master", "fixedVersion": "master" } ], "datasource": "git-refs" } ], "github-actions": [ { "packageFile": ".github/workflows/ci.yml", "deps": [ { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "actions/setup-dotnet", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/setup-dotnet@v1.8.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.8.2", "depIndex": 1, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/setup-dotnet", "currentVersion": "v1.8.2", "fixedVersion": "v1.8.2" }, { "depName": "crowdin/github-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "crowdin/github-action@1.4.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "1.4.0", "depIndex": 2, "updates": [], "warnings": [], "sourceUrl": "https://github.com/crowdin/github-action", "currentVersion": "1.4.0", "fixedVersion": "1.4.0" } ] }, { "packageFile": ".github/workflows/docker-ci.yml", "deps": [ { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "docker/setup-buildx-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/setup-buildx-action@v1.6.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.6.0", "depIndex": 1, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/setup-buildx-action", "currentVersion": "v1.6.0", "fixedVersion": "v1.6.0" }, { "depName": "docker/build-push-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/build-push-action@v2.7.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.7.0", "depIndex": 2, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/build-push-action", "currentVersion": "v2.7.0", "fixedVersion": "v2.7.0" } ] }, { "packageFile": ".github/workflows/docker-publish-latest.yml", "deps": [ { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "docker/setup-buildx-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/setup-buildx-action@v1.6.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.6.0", "depIndex": 1, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/setup-buildx-action", "currentVersion": "v1.6.0", "fixedVersion": "v1.6.0" }, { "depName": "docker/login-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/login-action@v1.10.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.10.0", "depIndex": 2, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/login-action", "currentVersion": "v1.10.0", "fixedVersion": "v1.10.0" }, { "depName": "docker/login-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/login-action@v1.10.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.10.0", "depIndex": 3, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/login-action", "currentVersion": "v1.10.0", "fixedVersion": "v1.10.0" }, { "depName": "docker/build-push-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/build-push-action@v2.7.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.7.0", "depIndex": 4, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/build-push-action", "currentVersion": "v2.7.0", "fixedVersion": "v2.7.0" } ] }, { "packageFile": ".github/workflows/docker-publish-main.yml", "deps": [ { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "docker/setup-buildx-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/setup-buildx-action@v1.6.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.6.0", "depIndex": 1, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/setup-buildx-action", "currentVersion": "v1.6.0", "fixedVersion": "v1.6.0" }, { "depName": "docker/login-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/login-action@v1.10.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.10.0", "depIndex": 2, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/login-action", "currentVersion": "v1.10.0", "fixedVersion": "v1.10.0" }, { "depName": "docker/login-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/login-action@v1.10.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.10.0", "depIndex": 3, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/login-action", "currentVersion": "v1.10.0", "fixedVersion": "v1.10.0" }, { "depName": "docker/build-push-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/build-push-action@v2.7.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.7.0", "depIndex": 4, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/build-push-action", "currentVersion": "v2.7.0", "fixedVersion": "v2.7.0" }, { "depName": "peter-evans/dockerhub-description", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "peter-evans/dockerhub-description@v2.4.3", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.4.3", "depIndex": 5, "updates": [], "warnings": [], "sourceUrl": "https://github.com/peter-evans/dockerhub-description", "currentVersion": "v2.4.3", "fixedVersion": "v2.4.3" } ] }, { "packageFile": ".github/workflows/docker-publish-released.yml", "deps": [ { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "docker/setup-buildx-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/setup-buildx-action@v1.6.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.6.0", "depIndex": 1, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/setup-buildx-action", "currentVersion": "v1.6.0", "fixedVersion": "v1.6.0" }, { "depName": "docker/login-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/login-action@v1.10.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.10.0", "depIndex": 2, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/login-action", "currentVersion": "v1.10.0", "fixedVersion": "v1.10.0" }, { "depName": "docker/login-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/login-action@v1.10.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.10.0", "depIndex": 3, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/login-action", "currentVersion": "v1.10.0", "fixedVersion": "v1.10.0" }, { "depName": "docker/build-push-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "docker/build-push-action@v2.7.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.7.0", "depIndex": 4, "updates": [], "warnings": [], "sourceUrl": "https://github.com/docker/build-push-action", "currentVersion": "v2.7.0", "fixedVersion": "v2.7.0" } ] }, { "packageFile": ".github/workflows/lock-threads.yml", "deps": [ { "depName": "dessant/lock-threads", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "dessant/lock-threads@v3.0.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v3.0.0", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/dessant/lock-threads", "currentVersion": "v3.0.0", "fixedVersion": "v3.0.0" } ] }, { "packageFile": ".github/workflows/publish.yml", "deps": [ { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "actions/setup-dotnet", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/setup-dotnet@v1.8.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.8.2", "depIndex": 1, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/setup-dotnet", "currentVersion": "v1.8.2", "fixedVersion": "v1.8.2" }, { "depName": "actions/setup-node", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/setup-node@v2.4.1", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.4.1", "depIndex": 2, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/setup-node", "currentVersion": "v2.4.1", "fixedVersion": "v2.4.1" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 3, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 4, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 5, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 6, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 7, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 8, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 9, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 10, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "actions/download-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/download-artifact@v2.0.10", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.0.10", "depIndex": 11, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/download-artifact", "currentVersion": "v2.0.10", "fixedVersion": "v2.0.10" }, { "depName": "actions/download-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/download-artifact@v2.0.10", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.0.10", "depIndex": 12, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/download-artifact", "currentVersion": "v2.0.10", "fixedVersion": "v2.0.10" }, { "depName": "actions/download-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/download-artifact@v2.0.10", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.0.10", "depIndex": 13, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/download-artifact", "currentVersion": "v2.0.10", "fixedVersion": "v2.0.10" }, { "depName": "actions/download-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/download-artifact@v2.0.10", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.0.10", "depIndex": 14, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/download-artifact", "currentVersion": "v2.0.10", "fixedVersion": "v2.0.10" }, { "depName": "actions/download-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/download-artifact@v2.0.10", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.0.10", "depIndex": 15, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/download-artifact", "currentVersion": "v2.0.10", "fixedVersion": "v2.0.10" }, { "depName": "actions/download-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/download-artifact@v2.0.10", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.0.10", "depIndex": 16, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/download-artifact", "currentVersion": "v2.0.10", "fixedVersion": "v2.0.10" }, { "depName": "actions/download-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/download-artifact@v2.0.10", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.0.10", "depIndex": 17, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/download-artifact", "currentVersion": "v2.0.10", "fixedVersion": "v2.0.10" }, { "depName": "crazy-max/ghaction-import-gpg", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "crazy-max/ghaction-import-gpg@v4.1.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v4.1.0", "depIndex": 18, "updates": [], "warnings": [], "sourceUrl": "https://github.com/crazy-max/ghaction-import-gpg", "currentVersion": "v4.1.0", "fixedVersion": "v4.1.0" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 19, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/upload-artifact", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-artifact@v2.2.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.2.4", "depIndex": 20, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-artifact", "currentVersion": "v2.2.4", "fixedVersion": "v2.2.4" }, { "depName": "actions/create-release", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/create-release@v1.1.4", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.1.4", "depIndex": 21, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/create-release", "currentVersion": "v1.1.4", "fixedVersion": "v1.1.4" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 22, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 23, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 24, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 25, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 26, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 27, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 28, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 29, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" }, { "depName": "actions/upload-release-asset", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/upload-release-asset@v1.0.2", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v1.0.2", "depIndex": 30, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/upload-release-asset", "currentVersion": "v1.0.2", "fixedVersion": "v1.0.2" } ] }, { "packageFile": ".github/workflows/translations.yml", "deps": [ { "depName": "actions/checkout", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "actions/checkout@v2.3.5", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v2.3.5", "depIndex": 0, "updates": [], "warnings": [], "sourceUrl": "https://github.com/actions/checkout", "currentVersion": "v2.3.5", "fixedVersion": "v2.3.5" }, { "depName": "crowdin/github-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "crowdin/github-action@1.4.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "1.4.0", "depIndex": 1, "updates": [], "warnings": [], "sourceUrl": "https://github.com/crowdin/github-action", "currentVersion": "1.4.0", "fixedVersion": "1.4.0" }, { "depName": "crazy-max/ghaction-import-gpg", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "crazy-max/ghaction-import-gpg@v4.1.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v4.1.0", "depIndex": 2, "updates": [], "warnings": [], "sourceUrl": "https://github.com/crazy-max/ghaction-import-gpg", "currentVersion": "v4.1.0", "fixedVersion": "v4.1.0" }, { "depName": "ad-m/github-push-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "ad-m/github-push-action@v0.6.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v0.6.0", "depIndex": 3, "updates": [], "warnings": [], "sourceUrl": "https://github.com/ad-m/github-push-action", "currentVersion": "v0.6.0", "fixedVersion": "v0.6.0" }, { "depName": "ad-m/github-push-action", "commitMessageTopic": "{{{depName}}} action", "datasource": "github-tags", "versioning": "docker", "depType": "action", "replaceString": "ad-m/github-push-action@v0.6.0", "autoReplaceStringTemplate": "{{depName}}@{{#if newDigest}}{{newDigest}}{{#if newValue}} # renovate: tag={{newValue}}{{/if}}{{/if}}{{#unless newDigest}}{{newValue}}{{/unless}}", "currentValue": "v0.6.0", "depIndex": 4, "updates": [], "warnings": [], "sourceUrl": "https://github.com/ad-m/github-push-action", "currentVersion": "v0.6.0", "fixedVersion": "v0.6.0" } ] } ], "nuget": [ { "packageFile": "ArchiSteamFarm.CustomPlugins.ExamplePlugin/ArchiSteamFarm.CustomPlugins.ExamplePlugin.csproj", "deps": [ { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Mvc.Core", "currentValue": "undefined", "depIndex": 0, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "JustArchiNET.Madness", "currentValue": "undefined", "depIndex": 1, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Composition.AttributedModel", "currentValue": "undefined", "depIndex": 2, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "SteamKit2", "currentValue": "undefined", "depIndex": 3, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Newtonsoft.Json", "currentValue": "undefined", "depIndex": 4, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "ConfigureAwaitChecker.Analyzer", "currentValue": "undefined", "depIndex": 5, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" } ] }, { "packageFile": "ArchiSteamFarm.CustomPlugins.PeriodicGC/ArchiSteamFarm.CustomPlugins.PeriodicGC.csproj", "deps": [ { "datasource": "nuget", "depType": "nuget", "depName": "System.Composition.AttributedModel", "currentValue": "undefined", "depIndex": 0, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "ConfigureAwaitChecker.Analyzer", "currentValue": "undefined", "depIndex": 1, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" } ] }, { "packageFile": "ArchiSteamFarm.OfficialPlugins.SteamTokenDumper/ArchiSteamFarm.OfficialPlugins.SteamTokenDumper.csproj", "deps": [ { "datasource": "nuget", "depType": "nuget", "depName": "JustArchiNET.Madness", "currentValue": "undefined", "depIndex": 0, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Composition.AttributedModel", "currentValue": "undefined", "depIndex": 1, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Swashbuckle.AspNetCore.Annotations", "currentValue": "undefined", "depIndex": 2, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "SteamKit2", "currentValue": "undefined", "depIndex": 3, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Newtonsoft.Json", "currentValue": "undefined", "depIndex": 4, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "JetBrains.Annotations", "currentValue": "undefined", "depIndex": 5, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "ConfigureAwaitChecker.Analyzer", "currentValue": "undefined", "depIndex": 6, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" } ] }, { "packageFile": "ArchiSteamFarm.Tests/ArchiSteamFarm.Tests.csproj", "deps": [ { "datasource": "nuget", "depType": "nuget", "depName": "MSTest.TestFramework", "currentValue": "undefined", "depIndex": 0, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "MSTest.TestAdapter", "currentValue": "undefined", "depIndex": 1, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.NET.Test.Sdk", "currentValue": "undefined", "depIndex": 2, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "ConfigureAwaitChecker.Analyzer", "currentValue": "undefined", "depIndex": 3, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" } ] }, { "packageFile": "ArchiSteamFarm/ArchiSteamFarm.csproj", "deps": [ { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.Extensions.Logging.Configuration", "currentValue": "undefined", "depIndex": 0, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.Extensions.Configuration.Json", "currentValue": "undefined", "depIndex": 1, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.WebSockets", "currentValue": "undefined", "depIndex": 2, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Server.Kestrel", "currentValue": "undefined", "depIndex": 3, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.ResponseCompression", "currentValue": "undefined", "depIndex": 4, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.ResponseCaching", "currentValue": "undefined", "depIndex": 5, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Localization", "currentValue": "undefined", "depIndex": 6, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.HttpOverrides", "currentValue": "undefined", "depIndex": 7, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Diagnostics", "currentValue": "undefined", "depIndex": 8, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Cors", "currentValue": "undefined", "depIndex": 9, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "JustArchiNET.Madness", "currentValue": "undefined", "depIndex": 10, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Security.Cryptography.ProtectedData", "currentValue": "undefined", "depIndex": 11, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.IO.FileSystem.AccessControl", "currentValue": "undefined", "depIndex": 12, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "zxcvbn-core", "currentValue": "undefined", "depIndex": 13, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Linq.Async", "currentValue": "undefined", "depIndex": 14, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Composition", "currentValue": "undefined", "depIndex": 15, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Swashbuckle.AspNetCore.Newtonsoft", "currentValue": "undefined", "depIndex": 16, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Swashbuckle.AspNetCore.Annotations", "currentValue": "undefined", "depIndex": 17, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Swashbuckle.AspNetCore", "currentValue": "undefined", "depIndex": 18, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "SteamKit2", "currentValue": "undefined", "depIndex": 19, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "NLog.Web.AspNetCore", "currentValue": "undefined", "depIndex": 20, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Nito.AsyncEx.Coordination", "currentValue": "undefined", "depIndex": 21, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Newtonsoft.Json", "currentValue": "undefined", "depIndex": 22, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Markdig.Signed", "currentValue": "undefined", "depIndex": 23, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "JetBrains.Annotations", "currentValue": "undefined", "depIndex": 24, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "Humanizer", "currentValue": "undefined", "depIndex": 25, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "CryptSharpStandard", "currentValue": "undefined", "depIndex": 26, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "ConfigureAwaitChecker.Analyzer", "currentValue": "undefined", "depIndex": 27, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" }, { "datasource": "nuget", "depType": "nuget", "depName": "AngleSharp.XPath", "currentValue": "undefined", "depIndex": 28, "updates": [], "warnings": [], "versioning": "nuget", "skipReason": "invalid-value" } ] }, { "packageFile": "Directory.Build.props", "deps": [] }, { "packageFile": "Directory.Packages.props", "deps": [ { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.Extensions.Logging.Configuration", "currentValue": "3.1.20", "depIndex": 0, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/dotnet/runtime", "currentVersion": "3.1.20", "fixedVersion": "3.1.20" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.Extensions.Configuration.Json", "currentValue": "3.1.20", "depIndex": 1, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/dotnet/runtime", "currentVersion": "3.1.20", "fixedVersion": "3.1.20" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.WebSockets", "currentValue": "2.2.1", "depIndex": 2, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/AspNetCore", "homepage": "https://asp.net/", "currentVersion": "2.2.1", "fixedVersion": "2.2.1" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Server.Kestrel", "currentValue": "2.2.0", "depIndex": 3, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/KestrelHttpServer", "homepage": "https://asp.net/", "currentVersion": "2.2.0", "fixedVersion": "2.2.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.ResponseCompression", "currentValue": "2.2.0", "depIndex": 4, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/BasicMiddleware", "homepage": "https://asp.net/", "currentVersion": "2.2.0", "fixedVersion": "2.2.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.ResponseCaching", "currentValue": "2.2.0", "depIndex": 5, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/ResponseCaching", "homepage": "https://asp.net/", "currentVersion": "2.2.0", "fixedVersion": "2.2.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Mvc.Core", "currentValue": "2.2.5", "depIndex": 6, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/AspNetCore", "homepage": "https://asp.net/", "currentVersion": "2.2.5", "fixedVersion": "2.2.5" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Localization", "currentValue": "2.2.0", "depIndex": 7, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/Localization", "homepage": "https://asp.net/", "currentVersion": "2.2.0", "fixedVersion": "2.2.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.HttpOverrides", "currentValue": "2.2.0", "depIndex": 8, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/BasicMiddleware", "homepage": "https://asp.net/", "currentVersion": "2.2.0", "fixedVersion": "2.2.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Diagnostics", "currentValue": "2.2.0", "depIndex": 9, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/Diagnostics", "homepage": "https://asp.net/", "currentVersion": "2.2.0", "fixedVersion": "2.2.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.AspNetCore.Cors", "currentValue": "2.2.0", "depIndex": 10, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/aspnet/CORS", "homepage": "https://asp.net/", "currentVersion": "2.2.0", "fixedVersion": "2.2.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "JustArchiNET.Madness", "currentValue": "1.4.0", "depIndex": 11, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/JustArchiNET/Madness", "currentVersion": "1.4.0", "fixedVersion": "1.4.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Security.Cryptography.ProtectedData", "currentValue": "5.0.0", "depIndex": 12, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/dotnet/runtime", "currentVersion": "5.0.0", "fixedVersion": "5.0.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.IO.FileSystem.AccessControl", "currentValue": "5.0.0", "depIndex": 13, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/dotnet/runtime", "currentVersion": "5.0.0", "fixedVersion": "5.0.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "zxcvbn-core", "currentValue": "7.0.92", "depIndex": 14, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/trichards57/zxcvbn-cs", "currentVersion": "7.0.92", "fixedVersion": "7.0.92" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Linq.Async", "currentValue": "5.0.0", "depIndex": 15, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/dotnet/reactive", "currentVersion": "5.0.0", "fixedVersion": "5.0.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Composition.AttributedModel", "currentValue": "5.0.1", "depIndex": 16, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/dotnet/runtime", "currentVersion": "5.0.1", "fixedVersion": "5.0.1" }, { "datasource": "nuget", "depType": "nuget", "depName": "System.Composition", "currentValue": "5.0.1", "depIndex": 17, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/dotnet/runtime", "currentVersion": "5.0.1", "fixedVersion": "5.0.1" }, { "datasource": "nuget", "depType": "nuget", "depName": "Swashbuckle.AspNetCore.Newtonsoft", "currentValue": "6.2.3", "depIndex": 18, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/domaindrivendev/Swashbuckle.AspNetCore", "currentVersion": "6.2.3", "fixedVersion": "6.2.3" }, { "datasource": "nuget", "depType": "nuget", "depName": "Swashbuckle.AspNetCore.Annotations", "currentValue": "6.2.3", "depIndex": 19, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/domaindrivendev/Swashbuckle.AspNetCore", "currentVersion": "6.2.3", "fixedVersion": "6.2.3" }, { "datasource": "nuget", "depType": "nuget", "depName": "Swashbuckle.AspNetCore", "currentValue": "6.2.3", "depIndex": 20, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/domaindrivendev/Swashbuckle.AspNetCore", "currentVersion": "6.2.3", "fixedVersion": "6.2.3" }, { "datasource": "nuget", "depType": "nuget", "depName": "SteamKit2", "currentValue": "2.4.0-Alpha.3", "depIndex": 21, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/SteamRE/SteamKit", "currentVersion": "2.4.0-Alpha.3", "fixedVersion": "2.4.0-Alpha.3" }, { "datasource": "nuget", "depType": "nuget", "depName": "NLog.Web.AspNetCore", "currentValue": "4.14.0", "depIndex": 22, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/NLog/NLog.Web", "currentVersion": "4.14.0", "fixedVersion": "4.14.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Nito.AsyncEx.Coordination", "currentValue": "5.1.2", "depIndex": 23, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/StephenCleary/AsyncEx", "currentVersion": "5.1.2", "fixedVersion": "5.1.2" }, { "datasource": "nuget", "depType": "nuget", "depName": "Newtonsoft.Json", "currentValue": "13.0.1", "depIndex": 24, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/JamesNK/Newtonsoft.Json", "homepage": "https://www.newtonsoft.com/json", "currentVersion": "13.0.1", "fixedVersion": "13.0.1" }, { "datasource": "nuget", "depType": "nuget", "depName": "MSTest.TestFramework", "currentValue": "2.2.4", "depIndex": 25, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/microsoft/testfx", "currentVersion": "2.2.4", "fixedVersion": "2.2.4" }, { "datasource": "nuget", "depType": "nuget", "depName": "MSTest.TestAdapter", "currentValue": "2.2.4", "depIndex": 26, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/microsoft/testfx", "currentVersion": "2.2.4", "fixedVersion": "2.2.4" }, { "datasource": "nuget", "depType": "nuget", "depName": "Microsoft.NET.Test.Sdk", "currentValue": "17.0.0", "depIndex": 27, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/microsoft/vstest", "currentVersion": "17.0.0", "fixedVersion": "17.0.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Markdig.Signed", "currentValue": "0.26.0", "depIndex": 28, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/xoofx/markdig", "currentVersion": "0.26.0", "fixedVersion": "0.26.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "JetBrains.Annotations", "currentValue": "2021.3.0", "depIndex": 29, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/JetBrains/JetBrains.Annotations", "homepage": "https://www.jetbrains.com/help/resharper/Code_Analysis__Code_Annotations.html", "currentVersion": "2021.3.0", "fixedVersion": "2021.3.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "Humanizer", "currentValue": "2.11.10", "depIndex": 30, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/Humanizr/Humanizer", "currentVersion": "2.11.10", "fixedVersion": "2.11.10" }, { "datasource": "nuget", "depType": "nuget", "depName": "CryptSharpStandard", "currentValue": "1.0.0", "depIndex": 31, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/nyandika/CryptSharp", "currentVersion": "1.0.0", "fixedVersion": "1.0.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "ConfigureAwaitChecker.Analyzer", "currentValue": "5.0.0", "depIndex": 32, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/cincuranet/ConfigureAwaitChecker", "currentVersion": "5.0.0", "fixedVersion": "5.0.0" }, { "datasource": "nuget", "depType": "nuget", "depName": "AngleSharp.XPath", "currentValue": "1.1.7", "depIndex": 33, "updates": [], "warnings": [], "versioning": "nuget", "sourceUrl": "https://github.com/AngleSharp/AngleSharp.XPath", "currentVersion": "1.1.7", "fixedVersion": "1.1.7" } ] } ] } } DEBUG: processRepo() DEBUG: Processing 6 branches: renovate/mcr.microsoft.com-dotnet-aspnet-5.x, renovate/mcr.microsoft.com-dotnet-aspnet-6.x, renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x, renovate/mcr.microsoft.com-dotnet-sdk-5.x, renovate/mcr.microsoft.com-dotnet-sdk-6.x DEBUG: Calculated maximum PRs remaining this run { "prsRemaining": 99 } DEBUG: PullRequests limit = 99 DEBUG: Calculated maximum branches remaining this run { "branchesRemaining": 99 } DEBUG: Branches limit = 99 DEBUG: Setting current branch to main(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: latest commit(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "branchName": "main", "latestCommitDate": "2021-11-01T00:47:15+01:00" } DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Retrieving PR list(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Retrieved 17 Pull Requests(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: branchExists=false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: recreateClosed is false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x, Update mcr.microsoft.com/dotnet/aspnet Docker tag to v5.0, !open)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Checking schedule(at any time, null)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: No schedule defined(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Branch needs creating(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: manager.getUpdatedPackageFiles() reuseExistinbranch=false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Starting search at index 2952(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "depName": "mcr.microsoft.com/dotnet/aspnet" } DEBUG: Found match at index 2952(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "depName": "mcr.microsoft.com/dotnet/aspnet" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "depName": "mcr.microsoft.com/dotnet/aspnet" } DEBUG: Updated 1 package files(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: No updated lock files in branch(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: 1 file(s) to commit(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Committing files to branch renovate/mcr.microsoft.com-dotnet-aspnet-5.x(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Setting git author name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "gitAuthorName": "Renovate Bot" } DEBUG: Setting git author email(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "gitAuthorEmail": "bot@renovateapp.com" } DEBUG: git commit(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/mcr.microsoft.com-dotnet-aspnet-5.x", "commit": "1576b49e", "root": false, "summary": { "changes": 1, "insertions": 1, "deletions": 0 } } } DEBUG: git push(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "result": { "pushed": [ { "deleted": false, "tag": false, "branch": true, "new": true, "alreadyUpdated": false, "local": "refs/heads/renovate/mcr.microsoft.com-dotnet-aspnet-5.x", "remote": "refs/heads/renovate/mcr.microsoft.com-dotnet-aspnet-5.x" } ], "branch": { "local": "renovate/mcr.microsoft.com-dotnet-aspnet-5.x", "remote": "renovate/mcr.microsoft.com-dotnet-aspnet-5.x", "remoteName": "origin" }, "ref": { "local": "refs/remotes/origin/renovate/mcr.microsoft.com-dotnet-aspnet-5.x" }, "remoteMessages": { "all": [ "Create a pull request for 'renovate/mcr.microsoft.com-dotnet-aspnet-5.x' on GitHub by visiting:", "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-aspnet-5.x" ], "pullRequestUrl": "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-aspnet-5.x" } } } INFO: Branch created(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "commitSha": "1576b49e" } DEBUG: Ensuring PR(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: resolveBranchStatus(branchName=renovate/mcr.microsoft.com-dotnet-aspnet-5.x, ignoreTests=false)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: getBranchStatus(renovate/mcr.microsoft.com-dotnet-aspnet-5.x)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: branch status check result(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "state": "pending", "statuses": [] } DEBUG: No check runs found(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") { "result": { "total_count": 0, "check_runs": [] } } DEBUG: Branch status yellow(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Branch is configured for branch automerge, branch status) is: yellow(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Checking how long this branch has been pending(branch="renovate/mcr.microsoft.com-dotnet-aspnet-5.x") DEBUG: Setting current branch to main(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: latest commit(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "branchName": "main", "latestCommitDate": "2021-11-01T00:47:15+01:00" } DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: branchExists=false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: recreateClosed is false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, Update mcr.microsoft.com/dotnet/runtime-deps Docker tag to v5.0, !open)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Checking schedule(at any time, null)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: No schedule defined(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Branch needs creating(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: manager.getUpdatedPackageFiles() reuseExistinbranch=false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Starting search at index 3107(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "depName": "mcr.microsoft.com/dotnet/runtime-deps" } DEBUG: Found match at index 3107(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "depName": "mcr.microsoft.com/dotnet/runtime-deps" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "depName": "mcr.microsoft.com/dotnet/runtime-deps" } DEBUG: Updated 1 package files(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: No updated lock files in branch(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: 1 file(s) to commit(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Committing files to branch renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Setting git author name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "gitAuthorName": "Renovate Bot" } DEBUG: Setting git author email(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "gitAuthorEmail": "bot@renovateapp.com" } DEBUG: git commit(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x", "commit": "ef3f3e99", "root": false, "summary": { "changes": 1, "insertions": 1, "deletions": 1 } } } DEBUG: git push(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "result": { "pushed": [ { "deleted": false, "tag": false, "branch": true, "new": true, "alreadyUpdated": false, "local": "refs/heads/renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x", "remote": "refs/heads/renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x" } ], "branch": { "local": "renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x", "remote": "renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x", "remoteName": "origin" }, "ref": { "local": "refs/remotes/origin/renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x" }, "remoteMessages": { "all": [ "Create a pull request for 'renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x' on GitHub by visiting:", "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x" ], "pullRequestUrl": "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x" } } } INFO: Branch created(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "commitSha": "ef3f3e99" } DEBUG: Ensuring PR(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: resolveBranchStatus(branchName=renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, ignoreTests=false)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: getBranchStatus(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: branch status check result(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "state": "pending", "statuses": [] } DEBUG: No check runs found(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") { "result": { "total_count": 0, "check_runs": [] } } DEBUG: Branch status yellow(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Branch is configured for branch automerge, branch status) is: yellow(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Checking how long this branch has been pending(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x") DEBUG: Setting current branch to main(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: latest commit(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "branchName": "main", "latestCommitDate": "2021-11-01T00:47:15+01:00" } DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: branchExists=false(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: recreateClosed is false(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x, Update mcr.microsoft.com/dotnet/sdk Docker tag to v5.0, !open)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: prAlreadyExisted=false(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Checking schedule(at any time, null)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: No schedule defined(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Branch needs creating(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: manager.getUpdatedPackageFiles() reuseExistinbranch=false(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Starting search at index 285(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found match at index 285(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Starting search at index 285(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found match at index 285(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Updated 2 package files(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: No updated lock files in branch(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: 2 file(s) to commit(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Committing files to branch renovate/mcr.microsoft.com-dotnet-sdk-5.x(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Setting git author name(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "gitAuthorName": "Renovate Bot" } DEBUG: Setting git author email(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "gitAuthorEmail": "bot@renovateapp.com" } DEBUG: git commit(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/mcr.microsoft.com-dotnet-sdk-5.x", "commit": "48631b8b", "root": false, "summary": { "changes": 2, "insertions": 2, "deletions": 0 } } } DEBUG: git push(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "result": { "pushed": [ { "deleted": false, "tag": false, "branch": true, "new": true, "alreadyUpdated": false, "local": "refs/heads/renovate/mcr.microsoft.com-dotnet-sdk-5.x", "remote": "refs/heads/renovate/mcr.microsoft.com-dotnet-sdk-5.x" } ], "branch": { "local": "renovate/mcr.microsoft.com-dotnet-sdk-5.x", "remote": "renovate/mcr.microsoft.com-dotnet-sdk-5.x", "remoteName": "origin" }, "ref": { "local": "refs/remotes/origin/renovate/mcr.microsoft.com-dotnet-sdk-5.x" }, "remoteMessages": { "all": [ "Create a pull request for 'renovate/mcr.microsoft.com-dotnet-sdk-5.x' on GitHub by visiting:", "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-sdk-5.x" ], "pullRequestUrl": "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-sdk-5.x" } } } INFO: Branch created(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "commitSha": "48631b8b" } DEBUG: Ensuring PR(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: resolveBranchStatus(branchName=renovate/mcr.microsoft.com-dotnet-sdk-5.x, ignoreTests=false)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: getBranchStatus(renovate/mcr.microsoft.com-dotnet-sdk-5.x)(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: branch status check result(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "state": "pending", "statuses": [] } DEBUG: No check runs found(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") { "result": { "total_count": 0, "check_runs": [] } } DEBUG: Branch status yellow(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Branch is configured for branch automerge, branch status) is: yellow(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Checking how long this branch has been pending(branch="renovate/mcr.microsoft.com-dotnet-sdk-5.x") DEBUG: Setting current branch to main(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: latest commit(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "branchName": "main", "latestCommitDate": "2021-11-01T00:47:15+01:00" } DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: branchExists=false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: recreateClosed is false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x, Update mcr.microsoft.com/dotnet/aspnet Docker tag to v6, !open)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Checking schedule(at any time, null)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: No schedule defined(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Branch needs creating(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: manager.getUpdatedPackageFiles() reuseExistinbranch=false(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Starting search at index 2952(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "depName": "mcr.microsoft.com/dotnet/aspnet" } DEBUG: Found match at index 2952(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "depName": "mcr.microsoft.com/dotnet/aspnet" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "depName": "mcr.microsoft.com/dotnet/aspnet" } DEBUG: Updated 1 package files(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: No updated lock files in branch(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: 1 file(s) to commit(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Committing files to branch renovate/mcr.microsoft.com-dotnet-aspnet-6.x(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Setting git author name(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "gitAuthorName": "Renovate Bot" } DEBUG: Setting git author email(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "gitAuthorEmail": "bot@renovateapp.com" } DEBUG: git commit(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/mcr.microsoft.com-dotnet-aspnet-6.x", "commit": "b5b6be62", "root": false, "summary": { "changes": 1, "insertions": 1, "deletions": 1 } } } DEBUG: git push(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "result": { "pushed": [ { "deleted": false, "tag": false, "branch": true, "new": true, "alreadyUpdated": false, "local": "refs/heads/renovate/mcr.microsoft.com-dotnet-aspnet-6.x", "remote": "refs/heads/renovate/mcr.microsoft.com-dotnet-aspnet-6.x" } ], "branch": { "local": "renovate/mcr.microsoft.com-dotnet-aspnet-6.x", "remote": "renovate/mcr.microsoft.com-dotnet-aspnet-6.x", "remoteName": "origin" }, "ref": { "local": "refs/remotes/origin/renovate/mcr.microsoft.com-dotnet-aspnet-6.x" }, "remoteMessages": { "all": [ "Create a pull request for 'renovate/mcr.microsoft.com-dotnet-aspnet-6.x' on GitHub by visiting:", "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-aspnet-6.x" ], "pullRequestUrl": "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-aspnet-6.x" } } } INFO: Branch created(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "commitSha": "b5b6be62" } DEBUG: Ensuring PR(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Creating PR(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "prTitle": "Update mcr.microsoft.com/dotnet/aspnet Docker tag to v6" } DEBUG: Creating PR(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "title": "Update mcr.microsoft.com/dotnet/aspnet Docker tag to v6", "head": "JustArchiNET:renovate/mcr.microsoft.com-dotnet-aspnet-6.x", "base": "main", "draft": false } DEBUG: PR created(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "pr": 2438, "draft": false } DEBUG: Adding labels '🤖 Automatic' to #2438(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") INFO: PR created(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "pr": 2438, "prTitle": "Update mcr.microsoft.com/dotnet/aspnet Docker tag to v6" } DEBUG: Adding assignees 'JustArchi' to #2438(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Added assignees(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") { "assignees": [ "JustArchi" ] } DEBUG: Created Pull Request #2438(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: PR is not configured for automerge(branch="renovate/mcr.microsoft.com-dotnet-aspnet-6.x") DEBUG: Setting current branch to main(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: latest commit(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "branchName": "main", "latestCommitDate": "2021-11-01T00:47:15+01:00" } DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: branchExists=false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: recreateClosed is false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x, Update mcr.microsoft.com/dotnet/runtime-deps Docker tag to v6, !open)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Checking schedule(at any time, null)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: No schedule defined(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Branch needs creating(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: manager.getUpdatedPackageFiles() reuseExistinbranch=false(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Starting search at index 3107(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "depName": "mcr.microsoft.com/dotnet/runtime-deps" } DEBUG: Found match at index 3107(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "depName": "mcr.microsoft.com/dotnet/runtime-deps" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "depName": "mcr.microsoft.com/dotnet/runtime-deps" } DEBUG: Updated 1 package files(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: No updated lock files in branch(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: 1 file(s) to commit(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Committing files to branch renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Setting git author name(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "gitAuthorName": "Renovate Bot" } DEBUG: Setting git author email(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "gitAuthorEmail": "bot@renovateapp.com" } DEBUG: git commit(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x", "commit": "2b1955b8", "root": false, "summary": { "changes": 1, "insertions": 1, "deletions": 0 } } } DEBUG: git push(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "result": { "pushed": [ { "deleted": false, "tag": false, "branch": true, "new": true, "alreadyUpdated": false, "local": "refs/heads/renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x", "remote": "refs/heads/renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x" } ], "branch": { "local": "renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x", "remote": "renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x", "remoteName": "origin" }, "ref": { "local": "refs/remotes/origin/renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x" }, "remoteMessages": { "all": [ "Create a pull request for 'renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x' on GitHub by visiting:", "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x" ], "pullRequestUrl": "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x" } } } INFO: Branch created(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "commitSha": "2b1955b8" } DEBUG: Ensuring PR(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Creating PR(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "prTitle": "Update mcr.microsoft.com/dotnet/runtime-deps Docker tag to v6" } DEBUG: Creating PR(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "title": "Update mcr.microsoft.com/dotnet/runtime-deps Docker tag to v6", "head": "JustArchiNET:renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x", "base": "main", "draft": false } DEBUG: PR created(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "pr": 2439, "draft": false } DEBUG: Adding labels '🤖 Automatic' to #2439(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") INFO: PR created(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "pr": 2439, "prTitle": "Update mcr.microsoft.com/dotnet/runtime-deps Docker tag to v6" } DEBUG: Adding assignees 'JustArchi' to #2439(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Added assignees(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") { "assignees": [ "JustArchi" ] } DEBUG: Created Pull Request #2439(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: PR is not configured for automerge(branch="renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x") DEBUG: Setting current branch to main(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: latest commit(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "branchName": "main", "latestCommitDate": "2021-11-01T00:47:15+01:00" } DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: branchExists=false(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: dependencyDashboardCheck=undefined(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: recreateClosed is false(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x, Update mcr.microsoft.com/dotnet/sdk Docker tag to v6, !open)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: prAlreadyExisted=false(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Checking schedule(at any time, null)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: No schedule defined(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Branch needs creating(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Using reuseExistingBranch: false(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: manager.getUpdatedPackageFiles() reuseExistinbranch=false(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Starting search at index 285(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found match at index 285(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile.Service", branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Starting search at index 285(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found match at index 285(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Found a multistage build stage name(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "image": "build-node" } DEBUG: Skipping alias COPY --from(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "image": "build-dotnet" } DEBUG: Contents updated(packageFile="Dockerfile", branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "depName": "mcr.microsoft.com/dotnet/sdk" } DEBUG: Updated 2 package files(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: No updated lock files in branch(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: 2 file(s) to commit(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Committing files to branch renovate/mcr.microsoft.com-dotnet-sdk-6.x(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Setting git author name(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "gitAuthorName": "Renovate Bot" } DEBUG: Setting git author email(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "gitAuthorEmail": "bot@renovateapp.com" } DEBUG: git commit(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "deletedFiles": [], "ignoredFiles": [], "result": { "author": null, "branch": "renovate/mcr.microsoft.com-dotnet-sdk-6.x", "commit": "979d98dc", "root": false, "summary": { "changes": 2, "insertions": 2, "deletions": 2 } } } DEBUG: git push(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "result": { "pushed": [ { "deleted": false, "tag": false, "branch": true, "new": true, "alreadyUpdated": false, "local": "refs/heads/renovate/mcr.microsoft.com-dotnet-sdk-6.x", "remote": "refs/heads/renovate/mcr.microsoft.com-dotnet-sdk-6.x" } ], "branch": { "local": "renovate/mcr.microsoft.com-dotnet-sdk-6.x", "remote": "renovate/mcr.microsoft.com-dotnet-sdk-6.x", "remoteName": "origin" }, "ref": { "local": "refs/remotes/origin/renovate/mcr.microsoft.com-dotnet-sdk-6.x" }, "remoteMessages": { "all": [ "Create a pull request for 'renovate/mcr.microsoft.com-dotnet-sdk-6.x' on GitHub by visiting:", "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-sdk-6.x" ], "pullRequestUrl": "https://github.com/JustArchiNET/ArchiSteamFarm/pull/new/renovate/mcr.microsoft.com-dotnet-sdk-6.x" } } } INFO: Branch created(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "commitSha": "979d98dc" } DEBUG: Ensuring PR(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: There are 0 errors and 0 warnings(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x, undefined, open)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x, undefined, closed)(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Creating PR(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "prTitle": "Update mcr.microsoft.com/dotnet/sdk Docker tag to v6" } DEBUG: Creating PR(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "title": "Update mcr.microsoft.com/dotnet/sdk Docker tag to v6", "head": "JustArchiNET:renovate/mcr.microsoft.com-dotnet-sdk-6.x", "base": "main", "draft": false } DEBUG: PR created(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "pr": 2440, "draft": false } DEBUG: Adding labels '🤖 Automatic' to #2440(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") INFO: PR created(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "pr": 2440, "prTitle": "Update mcr.microsoft.com/dotnet/sdk Docker tag to v6" } DEBUG: Adding assignees 'JustArchi' to #2440(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: Added assignees(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") { "assignees": [ "JustArchi" ] } DEBUG: Created Pull Request #2440(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: PR is not configured for automerge(branch="renovate/mcr.microsoft.com-dotnet-sdk-6.x") DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x, undefined, open) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-5.x, undefined, closed) DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, undefined, open) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x, undefined, closed) DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x, undefined, open) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-5.x, undefined, closed) DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-aspnet-6.x, undefined, open) DEBUG: Found PR #2438 DEBUG: Returning from graphql open PR list DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x, undefined, open) DEBUG: Found PR #2439 DEBUG: Returning from graphql open PR list DEBUG: getBranchPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x) DEBUG: findPr(renovate/mcr.microsoft.com-dotnet-sdk-6.x, undefined, open) DEBUG: Found PR #2440 DEBUG: Returning from graphql open PR list DEBUG: Closing Dependency Dashboard DEBUG: Retrieving issueList DEBUG: Retrieved 1 issues DEBUG: Removing any stale branches DEBUG: config.repoIsOnboarded=true DEBUG: Branch lists { "branchList": [ "renovate/mcr.microsoft.com-dotnet-aspnet-5.x", "renovate/mcr.microsoft.com-dotnet-aspnet-6.x", "renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x", "renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x", "renovate/mcr.microsoft.com-dotnet-sdk-5.x", "renovate/mcr.microsoft.com-dotnet-sdk-6.x" ], "renovateBranches": [ "renovate/mcr.microsoft.com-dotnet-aspnet-5.x", "renovate/mcr.microsoft.com-dotnet-aspnet-6.x", "renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x", "renovate/mcr.microsoft.com-dotnet-runtime-deps-6.x", "renovate/mcr.microsoft.com-dotnet-sdk-5.x", "renovate/mcr.microsoft.com-dotnet-sdk-6.x" ] } DEBUG: remainingBranches= DEBUG: No branches to clean up DEBUG: Repository timing splits (milliseconds) { "splits": { "init": 2567, "extract": 6139, "lookup": 15791, "update": 33661 }, "total": 60535 } DEBUG: http statistics { "urls": { "https://api.github.com/graphql (POST)": 4, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/commits/renovate/mcr.microsoft.com-dotnet-aspnet-5.x/check-runs (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/commits/renovate/mcr.microsoft.com-dotnet-aspnet-5.x/status (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/commits/renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x/check-runs (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/commits/renovate/mcr.microsoft.com-dotnet-runtime-deps-5.x/status (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/commits/renovate/mcr.microsoft.com-dotnet-sdk-5.x/check-runs (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/commits/renovate/mcr.microsoft.com-dotnet-sdk-5.x/status (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/contents/.github/renovate.json5 (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/issues/2438/assignees (POST)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/issues/2438/labels (POST)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/issues/2439/assignees (POST)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/issues/2439/labels (POST)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/issues/2440/assignees (POST)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/issues/2440/labels (POST)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/pulls (GET)": 1, "https://api.github.com/repos/JustArchiNET/ArchiSteamFarm/pulls (POST)": 3, "https://api.github.com/repos/crowdin/github-action/releases (GET)": 1, "https://api.github.com/repos/crowdin/github-action/tags (GET)": 1, "https://api.github.com/repos/peter-evans/dockerhub-description/releases (GET)": 1, "https://api.github.com/repos/peter-evans/dockerhub-description/tags (GET)": 1, "https://api.github.com/repos/whitesource/merge-confidence/contents/beta.json (GET)": 1, "https://api.github.com/repositories/44897462/pulls (GET)": 9, "https://api.nuget.org/v3-flatcontainer/anglesharp.xpath/1.1.7/anglesharp.xpath.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/configureawaitchecker.analyzer/5.0.0/configureawaitchecker.analyzer.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/cryptsharpstandard/1.0.0/cryptsharpstandard.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/humanizer/2.11.10/humanizer.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/jetbrains.annotations/2021.3.0/jetbrains.annotations.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/justarchinet.madness/1.4.0/justarchinet.madness.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/markdig.signed/0.26.0/markdig.signed.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.cors/2.2.0/microsoft.aspnetcore.cors.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.diagnostics/2.2.0/microsoft.aspnetcore.diagnostics.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.httpoverrides/2.2.0/microsoft.aspnetcore.httpoverrides.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.localization/2.2.0/microsoft.aspnetcore.localization.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.mvc.core/2.2.5/microsoft.aspnetcore.mvc.core.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.responsecaching/2.2.0/microsoft.aspnetcore.responsecaching.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.responsecompression/2.2.0/microsoft.aspnetcore.responsecompression.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.server.kestrel/2.2.0/microsoft.aspnetcore.server.kestrel.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.aspnetcore.websockets/2.2.1/microsoft.aspnetcore.websockets.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.configuration.json/5.0.0/microsoft.extensions.configuration.json.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.extensions.logging.configuration/5.0.0/microsoft.extensions.logging.configuration.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/microsoft.net.test.sdk/17.0.0/microsoft.net.test.sdk.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/mstest.testadapter/2.2.7/mstest.testadapter.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/mstest.testframework/2.2.7/mstest.testframework.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/newtonsoft.json/13.0.1/newtonsoft.json.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/nito.asyncex.coordination/5.1.2/nito.asyncex.coordination.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/nlog.web.aspnetcore/4.14.0/nlog.web.aspnetcore.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/steamkit2/2.3.0/steamkit2.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/swashbuckle.aspnetcore.annotations/6.2.3/swashbuckle.aspnetcore.annotations.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/swashbuckle.aspnetcore.newtonsoft/6.2.3/swashbuckle.aspnetcore.newtonsoft.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/swashbuckle.aspnetcore/6.2.3/swashbuckle.aspnetcore.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/system.composition.attributedmodel/5.0.1/system.composition.attributedmodel.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/system.composition/5.0.1/system.composition.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/system.io.filesystem.accesscontrol/5.0.0/system.io.filesystem.accesscontrol.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/system.linq.async/5.0.0/system.linq.async.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/system.security.cryptography.protecteddata/5.0.0/system.security.cryptography.protecteddata.nuspec (GET)": 1, "https://api.nuget.org/v3-flatcontainer/zxcvbn-core/7.0.92/zxcvbn-core.nuspec (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/anglesharp.xpath/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/configureawaitchecker.analyzer/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/cryptsharpstandard/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/humanizer/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/jetbrains.annotations/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/justarchinet.madness/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/markdig.signed/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.cors/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.diagnostics/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.httpoverrides/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.localization/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.mvc.core/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.responsecaching/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.responsecompression/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.server.kestrel/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.aspnetcore.websockets/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.configuration.json/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.extensions.logging.configuration/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/microsoft.net.test.sdk/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/mstest.testadapter/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/mstest.testframework/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/newtonsoft.json/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/nito.asyncex.coordination/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/nlog.web.aspnetcore/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/steamkit2/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/swashbuckle.aspnetcore.annotations/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/swashbuckle.aspnetcore.newtonsoft/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/swashbuckle.aspnetcore/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/system.composition.attributedmodel/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/system.composition/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/system.io.filesystem.accesscontrol/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/system.linq.async/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/system.security.cryptography.protecteddata/index.json (GET)": 1, "https://api.nuget.org/v3/registration5-gz-semver2/zxcvbn-core/index.json (GET)": 1, "https://mcr.microsoft.com/v2/ (GET)": 1, "https://mcr.microsoft.com/v2/dotnet/runtime-deps/blobs/sha256:b1edd25d25b5fb582b2891b731026afb620b75095f3729c37a45630b03e0a202 (GET)": 1, "https://mcr.microsoft.com/v2/dotnet/runtime-deps/manifests/latest (GET)": 1, "https://mcr.microsoft.com/v2/dotnet/runtime-deps/manifests/sha256:b92d9c02e7ee37c33aa3ab12abeade6643c99e19e9567a3d295347dbaee53647 (GET)": 1, "https://mcr.microsoft.com/v2/dotnet/runtime-deps/tags/list (GET)": 1 }, "hostStats": { "api.github.com": { "requestCount": 35, "requestAvgMs": 1374, "queueAvgMs": 0 }, "api.nuget.org": { "requestCount": 68, "requestAvgMs": 959, "queueAvgMs": 0 }, "mcr.microsoft.com": { "requestCount": 5, "requestAvgMs": 2097, "queueAvgMs": 0 } }, "totalRequests": 108 } INFO: Repository finished { "durationMs": 60535 } ```

Have you created a minimal reproduction repository?

No reproduction, but I have linked to a public repo where it occurs

rarkins commented 2 years ago

@olegkrivtsov can you try to reproduce and fix? This type of tag should just be skipped

olegkrivtsov commented 2 years ago

Hi @rarkins I've addressed this issue in https://github.com/renovatebot/renovate/pull/12447

renovate-release commented 2 years ago

:tada: This issue has been resolved in version 28.21.5 :tada:

The release is available on:

Your semantic-release bot :package::rocket: