Skip to content

Commit 50853c1

Browse files
committed
chore: Update packages/actions
1 parent bc092c5 commit 50853c1

File tree

6 files changed

+16
-16
lines changed

6 files changed

+16
-16
lines changed

.github/workflows/docs-deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,16 @@ jobs:
2323
steps:
2424

2525
- name: 🛒 Checkout repository
26-
uses: actions/checkout@v2
26+
uses: actions/checkout@v3
2727
with:
2828
fetch-depth: 0
2929
token: ${{ secrets.BUNIT_BOT_TOKEN }}
3030

3131
- name: ⚙️ Import GPG key
3232
id: import_gpg
33-
uses: crazy-max/ghaction-import-gpg@v3
33+
uses: crazy-max/ghaction-import-gpg@v5
3434
with:
35-
gpg-private-key: ${{ secrets.BUNIT_BOT_GPG_PRIVATE_KEY }}
35+
gpg_private_key: ${{ secrets.BUNIT_BOT_GPG_PRIVATE_KEY }}
3636
passphrase: ${{ secrets.BUNIT_BOT_GPG_KEY_PASSPHRASE }}
3737

3838
- name: ⚙️ Setup CI GIT
@@ -87,7 +87,7 @@ jobs:
8787

8888
- name: 🛠️ Deploy to GitHub Pages
8989
if: success()
90-
uses: crazy-max/ghaction-github-pages@v2
90+
uses: crazy-max/ghaction-github-pages@v3
9191
with:
9292
build_dir: docs/site/_site
9393
fqdn: bunit.dev
@@ -110,7 +110,7 @@ jobs:
110110
111111
- name: ⏭ Create pull request from stable to main when direct merge fails
112112
if: steps.mergeMainline.outcome == 'failure'
113-
uses: thomaseizinger/create-pull-request@1.0.0
113+
uses: thomaseizinger/create-pull-request@1.2.2
114114
env:
115115
GITHUB_TOKEN: ${{ secrets.BUNIT_BOT_TOKEN }}
116116
with:

.github/workflows/prepare-release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
if: github.ref == 'refs/heads/main' && contains(fromJson('["major","minor"]'), github.event.inputs.versionIncrement)
1717
steps:
1818
- name: 🛒 Checkout repository
19-
uses: actions/checkout@v2
19+
uses: actions/checkout@v3
2020
with:
2121
fetch-depth: 0
2222
token: ${{ secrets.BUNIT_BOT_TOKEN }}
@@ -35,9 +35,9 @@ jobs:
3535
exit 1
3636
- name: ⚙️ Import GPG key
3737
id: import_gpg
38-
uses: crazy-max/ghaction-import-gpg@v3
38+
uses: crazy-max/ghaction-import-gpg@v5
3939
with:
40-
gpg-private-key: ${{ secrets.BUNIT_BOT_GPG_PRIVATE_KEY }}
40+
gpg_private_key: ${{ secrets.BUNIT_BOT_GPG_PRIVATE_KEY }}
4141
passphrase: ${{ secrets.BUNIT_BOT_GPG_KEY_PASSPHRASE }}
4242

4343
- name: ⚙️ Setup CI GIT
@@ -83,7 +83,7 @@ jobs:
8383
run: git push origin release/v$NBGV_MajorMinorVersion
8484

8585
- name: ⏭ Create pull request for release branch
86-
uses: thomaseizinger/create-pull-request@1.0.0
86+
uses: thomaseizinger/create-pull-request@1.2.2
8787
env:
8888
GITHUB_TOKEN: ${{ secrets.BUNIT_BOT_TOKEN }}
8989
with:

.github/workflows/release-preview.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
steps:
2222

2323
- name: 🛒 Checkout repository
24-
uses: actions/checkout@v2
24+
uses: actions/checkout@v3
2525
with:
2626
fetch-depth: 0
2727

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ jobs:
4242
4343
- name: ⚙️ Import GPG key
4444
id: import_gpg
45-
uses: crazy-max/ghaction-import-gpg@v3
45+
uses: crazy-max/ghaction-import-gpg@v5
4646
with:
47-
gpg-private-key: ${{ secrets.BUNIT_BOT_GPG_PRIVATE_KEY }}
47+
gpg_private_key: ${{ secrets.BUNIT_BOT_GPG_PRIVATE_KEY }}
4848
passphrase: ${{ secrets.BUNIT_BOT_GPG_KEY_PASSPHRASE }}
4949

5050
- name: ⚙️ Setup CI GIT
@@ -69,7 +69,7 @@ jobs:
6969
7.0.x
7070
7171
- name: 🛠️ Update changelog
72-
uses: thomaseizinger/keep-a-changelog-new-release@1.2.1
72+
uses: thomaseizinger/keep-a-changelog-new-release@1.3.0
7373
with:
7474
version: ${{ env.NBGV_SemVer2 }}
7575

@@ -125,7 +125,7 @@ jobs:
125125
126126
- name: ⏭ Create pull request from stable to main when direct merge fails
127127
if: steps.mergeMainline.outcome == 'failure'
128-
uses: thomaseizinger/create-pull-request@1.0.0
128+
uses: thomaseizinger/create-pull-request@1.2.2
129129
env:
130130
GITHUB_TOKEN: ${{ secrets.BUNIT_BOT_TOKEN }}
131131
with:

.github/workflows/verification.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232

3333
steps:
3434
- name: 🛒 Checkout repository
35-
uses: actions/checkout@v2
35+
uses: actions/checkout@v3
3636
with:
3737
fetch-depth: 0
3838

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
<!-- Shared code analyzers used for all projects in the solution -->
4949
<ItemGroup Label="Code Analyzers">
5050
<PackageReference Include="AsyncFixer" Version="1.6.0" PrivateAssets="All" />
51-
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.47.0.55603" PrivateAssets="All" />
51+
<PackageReference Include="SonarAnalyzer.CSharp" Version="8.48.0.56517" PrivateAssets="All" />
5252
</ItemGroup>
5353

5454
<ItemGroup Label="Implicit usings"

0 commit comments

Comments
 (0)