Skip to content

Commit 4d3a889

Browse files
update workflow actions (#701)
* update workflow actions * update workflow actions
1 parent 4bdc085 commit 4d3a889

File tree

6 files changed

+10
-13
lines changed

6 files changed

+10
-13
lines changed

.github/workflows/auto-merge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
auto-merge:
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v6
1010
- uses: ahmadnassri/action-dependabot-auto-merge@v2.6
1111
with:
1212
target: minor

.github/workflows/code-style.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
args: --write .
1919

20-
- uses: stefanzweifel/git-auto-commit-action@v5.1.0
20+
- uses: stefanzweifel/git-auto-commit-action@v7.1.0
2121
with:
2222
commit_user_name: Markus Poerschke (Bot)
2323
commit_user_email: markus+githubbot@poerschke.nrw

.github/workflows/danger.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
name: Danger JS
77
runs-on: ubuntu-latest
88
steps:
9-
- uses: actions/checkout@v4
9+
- uses: actions/checkout@v6
1010
- name: Danger
1111
uses: docker://ghcr.io/danger/danger-js:10.6.6
1212
env:

.github/workflows/draft-new-release.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
token: ${{ secrets.PAT }}
2323

2424
- name: Update changelog
25-
uses: thomaseizinger/keep-a-changelog-new-release@1.3.0
25+
uses: thomaseizinger/keep-a-changelog-new-release@3.1.0
2626
with:
2727
version: ${{ github.event.inputs.version }}
2828

@@ -33,7 +33,7 @@ jobs:
3333

3434
- run: git checkout -b release/${{ github.event.inputs.version }}
3535

36-
- uses: stefanzweifel/git-auto-commit-action@v5.1.0
36+
- uses: stefanzweifel/git-auto-commit-action@v7.1.0
3737
with:
3838
branch: release/${{ github.event.inputs.version }}
3939
commit_user_name: Markus Poerschke (Bot)
@@ -43,8 +43,6 @@ jobs:
4343

4444
- name: Create pull request
4545
uses: thomaseizinger/create-pull-request@1.4.0
46-
env:
47-
GITHUB_TOKEN: ${{ secrets.PAT }}
4846
with:
4947
head: release/${{ github.event.inputs.version }}
5048
base: ${{ github.event.inputs.target_branch }}
@@ -56,3 +54,4 @@ jobs:
5654
This PR was created in response to a manual trigger of the release workflow here: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}.
5755
I've updated the changelog: ${{ steps.make-commit.outputs.commit }}.
5856
Merging this PR will create a GitHub release.
57+
github_token: ${{ secrets.PAT }}

.github/workflows/publish-new-release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/')
1515
steps:
16-
- name: Checkout
17-
uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1817

1918
- name: Extract version from branch name (for release branches)
2019
run: |
@@ -30,13 +29,12 @@ jobs:
3029
version: ${{ env.RELEASE_VERSION }}
3130

3231
- name: Create Release
33-
uses: thomaseizinger/create-release@1.0.0
34-
env:
35-
GITHUB_TOKEN: ${{ secrets.PAT }}
32+
uses: thomaseizinger/create-release@2.0.0
3633
with:
3734
target_commitish: ${{ github.event.pull_request.merge_commit_sha }}
3835
tag_name: ${{ env.RELEASE_VERSION }}
3936
name: ${{ env.RELEASE_VERSION }}
4037
body: ${{ steps.changelog.outputs.description }}
4138
draft: false
4239
prerelease: false
40+
github_token: ${{ secrets.PAT }}

.github/workflows/reviewdog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
name: Spell check
88
runs-on: ubuntu-latest
99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
- uses: reviewdog/action-languagetool@v1
1212
with:
1313
github_token: ${{ secrets.PAT }}

0 commit comments

Comments
 (0)