Skip to content

Commit 93541ae

Browse files
committed
Merge branch 'release/6.0.0'
* release/6.0.0: (40 commits) (maint) Changed severity on brace formatting (maint) Add rule to error on unnecessary usings (doc) Add all missing documentation (test) Added basic test script (maint) Create .git-blame-ignore-revs file (maint) Applied StyleCop/EditorConfig suggestions (maint) Add StyleCop.Analyzers package (maint) Add StyleCop and EditorConfig files (build) Bump to latest build image (#8) Remove token from AppVeyor file All classes should be public (especially AppVeyorClient). (maint) Ensure README is shown on nuget.org (maint) Correct name of project (maint) Add Readme to NuGet Package (maint) Fix markdonwlint warnings (#49) Add link to GitHub Discussions (#50) Remove old icons (maint) Add recommended tags to csproj file (#87) Update to Cake 2.0.0 (maint): Bump Cake.Testing from 1.0.0 to 2.2.0 ... # Conflicts: # src/Cake.AppVeyor.Tests/AppVeyorTests.cs # src/Cake.AppVeyor.Tests/Cake.AppVeyor.Tests.csproj # src/Cake.AppVeyor.Tests/Keys.cs
2 parents c814fd1 + 3592c55 commit 93541ae

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1042
-378
lines changed

.appveyor.yml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
1-
environment:
2-
appveyor_api_token:
3-
secure: vJntliZhY34wDY8ERUBFNtDYDykoBArjD23Hq3hfN+0=
4-
51
#---------------------------------#
62
# Build Image #
73
#---------------------------------#
8-
image: Visual Studio 2019
4+
image: Visual Studio 2022
95

106
#---------------------------------#
117
# Build Script #

.git-blame-ignore-revs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#(maint) Applied StyleCop/EditorConfig suggestions
2+
2f9719b9756358c8e5199efb7895ea194ffc0191

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ jobs:
4242
WYAM_DEPLOY_REMOTE: ${{ github.event.repository.html_url }}
4343
steps:
4444
- name: Checkout the repository
45-
uses: actions/checkout@v2
45+
uses: actions/checkout@v3
4646

4747
- name: Fetch all tags and branches
4848
run: git fetch --prune --unshallow
4949

5050
- name: Cache Tools
51-
uses: actions/cache@v2
51+
uses: actions/cache@v3
5252
with:
5353
path: tools
5454
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
@@ -63,14 +63,14 @@ jobs:
6363
cake-bootstrap: true
6464

6565
- name: Upload Issues-Report
66-
uses: actions/upload-artifact@v2
66+
uses: actions/upload-artifact@v3
6767
with:
6868
if-no-files-found: warn
6969
name: issues
7070
path: BuildArtifacts/report.html
7171

7272
- name: Upload Packages
73-
uses: actions/upload-artifact@v2
73+
uses: actions/upload-artifact@v3
7474
with:
7575
if-no-files-found: warn
7676
name: package

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030

3131
steps:
3232
- name: Checkout repository
33-
uses: actions/checkout@v2.3.4
33+
uses: actions/checkout@v3
3434
with:
3535
fetch-depth: 0
3636

@@ -41,7 +41,7 @@ jobs:
4141

4242
# Initializes the CodeQL tools for scanning.
4343
- name: Initialize CodeQL
44-
uses: github/codeql-action/init@v1
44+
uses: github/codeql-action/init@v2
4545
with:
4646
languages: ${{ matrix.language }}
4747
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -53,4 +53,4 @@ jobs:
5353
shell: pwsh
5454

5555
- name: Perform CodeQL Analysis
56-
uses: github/codeql-action/analyze@v1
56+
uses: github/codeql-action/analyze@v2

.github/workflows/dependabot-cake.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ jobs:
1010
runs-on: ubuntu-18.04 # linux, because this is a docker-action
1111
steps:
1212
- name: check/update cake dependencies
13-
uses: nils-org/dependabot-cake-action@v1
13+
uses: nils-org/dependabot-cake-action@v1.1.0

.github/workflows/publishDocs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,13 @@ jobs:
1515

1616
steps:
1717
- name: checkout
18-
uses: actions/checkout@v2.3.4 #https://github.com/actions/checkout
18+
uses: actions/checkout@v3 #https://github.com/actions/checkout
1919
with:
2020
fetch-depth: 0 # GitVersion is somewhat irritated when fetch-depth is "1"....
2121
ref: ${{ github.event.ref }}
2222

2323
- name: Cache Tools
24-
uses: actions/cache@v2
24+
uses: actions/cache@v3
2525
with:
2626
path: tools
2727
key: ${{ runner.os }}-doc-tools-${{ hashFiles('recipe.cake') }}

.github/workflows/release-notes.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ jobs:
1111

1212
steps:
1313
- name: Checkout the requested branch
14-
uses: actions/checkout@v2.3.4
14+
uses: actions/checkout@v3
1515
- name: Fetch all tags and branches
1616
run: git fetch --prune --unshallow
1717
- name: Cache Tools
18-
uses: actions/cache@v2.1.4
18+
uses: actions/cache@v3
1919
with:
2020
path: tools
2121
key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }}
2222
- name: Set up git version
2323
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }}
24-
uses: gittools/actions/gitversion/[email protected].9
24+
uses: gittools/actions/gitversion/[email protected].13
2525
with:
2626
versionSpec: "5.x"
2727
- name: Run git version
2828
if: ${{ !contains(github.ref, '/hotfix/') && !contains(github.ref, '/release/') }}
2929
id: gitversion
30-
uses: gittools/actions/gitversion/[email protected].9
30+
uses: gittools/actions/gitversion/[email protected].13
3131
- name: Create release branch ${{ github.event.inputs.version }}
3232
if: ${{ steps.gitversion.outputs.majorMinorPatch }}
3333
run: git switch -c release/${{ steps.gitversion.outputs.majorMinorPatch }}

README.md

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Cake.AppVeyor
2-
A set of aliases for http://cakebuild.net to access the AppVeyor API
2+
3+
A set of aliases for <http://cakebuild.net> to access the AppVeyor API
34

45
![AppVeyor](https://ci.appveyor.com/api/projects/status/github/cake-contrib/Cake.AppVeyor)
56

@@ -11,8 +12,7 @@ You can easily reference Cake.AppVeyor directly in your build script via a cake
1112
#addin nuget:?package=Newtonsoft.Json&version=11.0.2
1213
```
1314

14-
NOTE: It's very important at this point in time to specify the `Newtonsoft.Json` package *and* the version _11.0.2_ for it, as well as the `Refit` package *and* the version _4.6.58_ for it.
15-
15+
NOTE: It's very important at this point in time to specify the `Newtonsoft.Json` package *and* the version *11.0.2* for it, as well as the `Refit` package *and* the version *4.6.58* for it.
1616

1717
## Aliases
1818

@@ -21,4 +21,11 @@ Please visit the Cake Documentation for a list of available aliases:
2121
[http://cakebuild.net/dsl/appveyor](http://cakebuild.net/dsl/appveyor)
2222

2323
## Apache License 2.0
24-
Apache Cake.Json Copyright 2016. The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/).
24+
25+
Apache Cake.AppVeyor Copyright 2016. The Apache Software Foundation This product includes software developed at [The Apache Software Foundation](http://www.apache.org/).
26+
27+
## Discussion
28+
29+
For questions and to discuss ideas & feature requests, use the [GitHub discussions on the Cake GitHub repository](https://github.com/cake-build/cake/discussions), under the [Extension Q&A](https://github.com/cake-build/cake/discussions/categories/extension-q-a) category.
30+
31+
[![Join in the discussion on the Cake repository](https://img.shields.io/badge/GitHub-Discussions-green?logo=github)](https://github.com/cake-build/cake/discussions)

icon.png

-32.3 KB
Binary file not shown.

0 commit comments

Comments
 (0)