From 7639f66edfdb44716c791ddda6434814793b9f4d Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Fri, 19 Mar 2021 23:21:50 +0100 Subject: [PATCH 1/4] (GH-64) updated CCG --- .../Cake.BuildSystems.Module.csproj | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj b/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj index e2eb6f1d..4777cf0a 100644 --- a/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj +++ b/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj @@ -20,8 +20,6 @@ cake;build;script;cake-build;module;cake-contrib;cake-module;ci;tfs;azure-devops;azure-devops-server;myget;teamcity;travisci https://github.com/cake-contrib/Cake.BuildSystems.Module.git git - https://cdn.jsdelivr.net/gh/cake-contrib/graphics/png/cake-contrib-medium.png - $(CakeContribGuidelinesIconDestinationLocation) @@ -41,10 +39,11 @@ + - + all runtime; build; native; contentfiles; analyzers; buildtransitive @@ -54,9 +53,7 @@ - + From cc6dca3218347367db4811a10085f9fdc49cf833 Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Sat, 20 Mar 2021 22:58:16 +0100 Subject: [PATCH 2/4] (GH-66) fixed codeql-analysis --- .github/workflows/codeql-analysis.yml | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 7e97d36e..820e28b8 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -24,16 +24,24 @@ jobs: with: fetch-depth: 0 - - run: git checkout HEAD^2 - if: ${{ github.event_name == 'pull_request' }} + - name: Cache Tools + uses: actions/cache@v2 + with: + path: tools + key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} - - run: ./build.ps1 --target=DotNetCore-Build - shell: pwsh + - name: Build project + uses: cake-build/cake-action@v1 + with: + script-path: recipe.cake + target: DotNetCore-Build + cake-version: 0.38.5 + cake-bootstrap: true - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1 From d6a4165bf8f37864a708d222b37d42dd68187444 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Apr 2021 07:06:49 +0000 Subject: [PATCH 3/4] Bump JetBrains.Annotations from 2020.3.0 to 2021.1.0 Bumps JetBrains.Annotations from 2020.3.0 to 2021.1.0. Signed-off-by: dependabot[bot] --- .../Cake.AzurePipelines.Module.csproj | 2 +- src/Cake.Module.Shared/Cake.Module.Shared.csproj | 2 +- src/Cake.MyGet.Module/Cake.MyGet.Module.csproj | 2 +- src/Cake.TeamCity.Module/Cake.TeamCity.Module.csproj | 2 +- src/Cake.TravisCI.Module/Cake.TravisCI.Module.csproj | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Cake.AzurePipelines.Module/Cake.AzurePipelines.Module.csproj b/src/Cake.AzurePipelines.Module/Cake.AzurePipelines.Module.csproj index 74d899b6..b788c61f 100644 --- a/src/Cake.AzurePipelines.Module/Cake.AzurePipelines.Module.csproj +++ b/src/Cake.AzurePipelines.Module/Cake.AzurePipelines.Module.csproj @@ -14,7 +14,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Cake.Module.Shared/Cake.Module.Shared.csproj b/src/Cake.Module.Shared/Cake.Module.Shared.csproj index c8b6e564..0607bff3 100644 --- a/src/Cake.Module.Shared/Cake.Module.Shared.csproj +++ b/src/Cake.Module.Shared/Cake.Module.Shared.csproj @@ -10,7 +10,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Cake.MyGet.Module/Cake.MyGet.Module.csproj b/src/Cake.MyGet.Module/Cake.MyGet.Module.csproj index 0a0bf0b6..215ce015 100644 --- a/src/Cake.MyGet.Module/Cake.MyGet.Module.csproj +++ b/src/Cake.MyGet.Module/Cake.MyGet.Module.csproj @@ -14,7 +14,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Cake.TeamCity.Module/Cake.TeamCity.Module.csproj b/src/Cake.TeamCity.Module/Cake.TeamCity.Module.csproj index 7a901ab7..6accca44 100644 --- a/src/Cake.TeamCity.Module/Cake.TeamCity.Module.csproj +++ b/src/Cake.TeamCity.Module/Cake.TeamCity.Module.csproj @@ -14,7 +14,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all diff --git a/src/Cake.TravisCI.Module/Cake.TravisCI.Module.csproj b/src/Cake.TravisCI.Module/Cake.TravisCI.Module.csproj index 00a6856a..278bfcdf 100644 --- a/src/Cake.TravisCI.Module/Cake.TravisCI.Module.csproj +++ b/src/Cake.TravisCI.Module/Cake.TravisCI.Module.csproj @@ -14,7 +14,7 @@ - + runtime; build; native; contentfiles; analyzers; buildtransitive all From fa3817447f7648b7f1fe8b00e7990d0f530611df Mon Sep 17 00:00:00 2001 From: Nils Andresen Date: Sat, 10 Apr 2021 23:48:17 +0200 Subject: [PATCH 4/4] (GH-69) updated CakeContrib.Guidelines --- .../Cake.BuildSystems.Module.csproj | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj b/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj index 4777cf0a..fc5b276d 100644 --- a/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj +++ b/src/Cake.BuildSystems.Module/Cake.BuildSystems.Module.csproj @@ -6,6 +6,12 @@ true true snupkg + + module @@ -43,7 +49,7 @@ - + all runtime; build; native; contentfiles; analyzers; buildtransitive