Skip to content

Commit 2d6a185

Browse files
committed
fix: Use only major versions
1 parent b68ab4d commit 2d6a185

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.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@v5.0.0
25+
uses: actions/checkout@v5
2626

27-
- uses: actions/setup-dotnet@v5.0.0
27+
- uses: actions/setup-dotnet@v5
2828
with:
2929
dotnet-version: |
3030
8.0.x

.github/workflows/create-release.yml

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

2222
- name: Checkout repository
23-
uses: actions/checkout@v5.0.0
23+
uses: actions/checkout@v5
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.2.3
31+
uses: mindsers/changelog-reader-action@v2
3232
with:
3333
version: Unreleased
3434
path: ./CHANGELOG.md
3535

3636
- name: Setup dotnet
37-
uses: actions/setup-dotnet@v5.0.0
37+
uses: actions/setup-dotnet@v5
3838
with:
3939
dotnet-version: |
4040
8.0.x
4141
9.0.x
4242
10.0.x
4343
4444
- name: Update CHANGELOG file
45-
uses: thomaseizinger/keep-a-changelog-new-release@3.1.0
45+
uses: thomaseizinger/keep-a-changelog-new-release@v3
4646
with:
4747
version: ${{ github.event.inputs.versionIncrement }}
4848

@@ -58,7 +58,7 @@ jobs:
5858
git push origin main
5959
6060
- name: Create release on GitHub
61-
uses: thomaseizinger/create-release@2.0.0
61+
uses: thomaseizinger/create-release@v2
6262
env:
6363
GITHUB_TOKEN: ${{ secrets.SBPAT }}
6464
with:

.github/workflows/docs.yml

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

1414
steps:
15-
- uses: actions/checkout@v5.0.0
15+
- uses: actions/checkout@v5
1616

1717
- name: Setup .NET
18-
uses: actions/setup-dotnet@v5.0.0
18+
uses: actions/setup-dotnet@v5
1919
with:
2020
dotnet-version: |
2121
8.0.x
2222
9.0.x
2323
10.0.x
2424
2525
- name: Setup DocFX
26-
uses: crazy-max/ghaction-chocolatey@v3.4.0
26+
uses: crazy-max/ghaction-chocolatey@v3
2727
with:
2828
args: install docfx
2929

@@ -34,7 +34,7 @@ jobs:
3434

3535
- name: Publish
3636
if: github.event_name == 'push'
37-
uses: peaceiris/actions-gh-pages@v4.0.0
37+
uses: peaceiris/actions-gh-pages@v4
3838
with:
3939
github_token: ${{ secrets.GITHUB_TOKEN }}
4040
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@v5.0.0
15+
- uses: actions/checkout@v5
1616
- name: Setup .NET
17-
uses: actions/setup-dotnet@v5.0.0
17+
uses: actions/setup-dotnet@v5
1818
with:
1919
dotnet-version: |
2020
8.0.x

.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@v5.0.0
16+
uses: actions/checkout@v5
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@v1.0.0
35+
uses: ad-m/github-push-action@v1
3636
with:
3737
github_token: ${{ secrets.SBPAT }}
3838
branch: stable

0 commit comments

Comments
 (0)