Skip to content

Commit fb11a3f

Browse files
github-actions[bot]linkdotnet
authored andcommitted
Update GitHub Action Versions
1 parent 8fa14ff commit fb11a3f

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/action-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99

1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v3.1.0
1212
with:
1313
token: ${{ secrets.WORKFLOW_SECRET }}
1414

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v2
25+
uses: actions/checkout@v3.1.0
2626

27-
- uses: actions/setup-dotnet@v1
27+
- uses: actions/setup-dotnet@v3.0.3
2828
with:
2929
dotnet-version: 6.0.x
3030
include-prerelease: true

.github/workflows/create-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,26 +20,26 @@ jobs:
2020
steps:
2121

2222
- name: Checkout repository
23-
uses: actions/checkout@v2
23+
uses: actions/checkout@v3.1.0
2424
with:
2525
token: ${{ secrets.SBPAT }}
2626
persist-credentials: true
2727
fetch-depth: 0
2828

2929
- name: Get changelog entries
3030
id: changelog
31-
uses: mindsers/changelog-reader-action@v2
31+
uses: mindsers/changelog-reader-action@v2.2.0
3232
with:
3333
version: Unreleased
3434
path: ./CHANGELOG.md
3535

3636
- name: Setup dotnet
37-
uses: actions/setup-dotnet@v2
37+
uses: actions/setup-dotnet@v3.0.3
3838
with:
3939
dotnet-version: 6.0.x
4040

4141
- name: Update CHANGELOG file
42-
uses: thomaseizinger/keep-a-changelog-new-release@1.2.1
42+
uses: thomaseizinger/keep-a-changelog-new-release@1.3.0
4343
with:
4444
version: ${{ github.event.inputs.versionIncrement }}
4545

.github/workflows/docs.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ jobs:
1212
runs-on: windows-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3.1.0
1616

1717
- name: Setup .NET 6.0
18-
uses: actions/setup-dotnet@v1
18+
uses: actions/setup-dotnet@v3.0.3
1919
with:
2020
dotnet-version: 6.0.x
2121

2222
- name: Setup DocFX
23-
uses: crazy-max/ghaction-chocolatey@v1
23+
uses: crazy-max/ghaction-chocolatey@v2.1.0
2424
with:
2525
args: install docfx
2626

@@ -31,7 +31,7 @@ jobs:
3131

3232
- name: Publish
3333
if: github.event_name == 'push'
34-
uses: peaceiris/actions-gh-pages@v3
34+
uses: peaceiris/actions-gh-pages@v3.9.0
3535
with:
3636
github_token: ${{ secrets.GITHUB_TOKEN }}
3737
publish_dir: docs/site/_site

.github/workflows/dotnet.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
15+
- uses: actions/checkout@v3.1.0
1616
- name: Setup .NET
17-
uses: actions/setup-dotnet@v1
17+
uses: actions/setup-dotnet@v3.0.3
1818
with:
1919
dotnet-version: 6.0.x
2020
include-prerelease: true

.github/workflows/update-release.yml

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

1414
steps:
1515
- name: Checkout repository
16-
uses: actions/checkout@v2
16+
uses: actions/checkout@v3.1.0
1717
with:
1818
token: ${{ secrets.SBPAT }}
1919
persist-credentials: false
@@ -32,7 +32,7 @@ jobs:
3232
git merge --no-ff -X theirs origin/main -m "Updating to newest release"
3333
3434
- name: Push changes
35-
uses: ad-m/github-push-action@master
35+
uses: ad-m/github-push-action@v0.6.0
3636
with:
3737
github_token: ${{ secrets.SBPAT }}
3838
branch: stable

0 commit comments

Comments
 (0)