Skip to content

Commit 741924a

Browse files
committed
ci: update actions and format with yamlfmt
Signed-off-by: Guennadi Maximov C <g.maxc.fox@protonmail.com>
1 parent f337300 commit 741924a

7 files changed

Lines changed: 30 additions & 31 deletions

File tree

.github/workflows/luarocks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
name: LuaRocks Upload
99
steps:
1010
- name: Checkout
11-
uses: actions/checkout@v6
11+
uses: actions/checkout@v6.0.2
1212
- name: LuaRocks Upload
1313
uses: nvim-neorocks/luarocks-tag-release@v7.2.0
1414
with:

.github/workflows/panvimdoc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: pandoc to vimdoc
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v6
16+
uses: actions/checkout@v6.0.2
1717
- name: Run panvimdoc for README
1818
uses: kdheepak/panvimdoc@v4.0.1
1919
with:

.github/workflows/panvimdoc_plugins.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
name: pandoc to vimdoc (plugins)
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v6.0.2
1919
- name: Run panvimdoc for agent-deck.md
2020
uses: kdheepak/panvimdoc@v4.0.1
2121
with:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
steps:
1717
- name: Checkout
18-
uses: actions/checkout@v6
18+
uses: actions/checkout@v6.0.2
1919
- name: Build Project Assets
2020
run: |
2121
mkdir -pv wezterm-types
@@ -31,7 +31,7 @@ jobs:
3131
with:
3232
latest: true
3333
prerelease: true
34-
pattern: '^v.*'
34+
pattern: "^v.*"
3535
debug: true
3636
throwing: true
3737
env:
@@ -41,7 +41,7 @@ jobs:
4141
echo ${{ github.sha }} > Release.txt
4242
cat Release.txt
4343
- name: Release
44-
uses: softprops/action-gh-release@v2.5.0
44+
uses: softprops/action-gh-release@v3.0.0
4545
if: github.ref_type == 'tag'
4646
with:
4747
files: |

.github/workflows/stylua.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@ jobs:
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v6
26+
uses: actions/checkout@v6.0.2
2727
- name: Run stylua
28-
uses: JohnnyMorganz/stylua-action@v4.1.0
28+
uses: JohnnyMorganz/stylua-action@v5
2929
with:
3030
token: ${{ secrets.GITHUB_TOKEN }}
3131
version: latest

.github/workflows/vim-eof-comment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,18 +16,18 @@ jobs:
1616
contents: write
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v6
19+
uses: actions/checkout@v6.0.2
2020
- name: Set up Python
21-
uses: actions/setup-python@v6.1.0
21+
uses: actions/setup-python@v6.2.0
2222
with:
23-
python-version: '3.14'
23+
python-version: "3.14"
2424
- name: Install vim-eof-comment
2525
run: |
2626
python -m pip install -U pip
2727
pip install -U vim-eof-comment
2828
- name: Run vim-eof-comment
2929
run: |
30-
vim-eof-comment -e lua,Makefile,yaml,toml -i lua:2:Y -v .
30+
vim-eof-comment -e lua,Makefile,yaml,yml,toml -i lua:2:Y -v .
3131
vim-eof-comment -e md -nv .
3232
- name: Auto Commit Changes
3333
uses: stefanzweifel/git-auto-commit-action@v7.1.0

git-conventional-commits.yaml

Lines changed: 18 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
1-
---
21
convention:
32
commitTypes:
4-
- feat # Commits, that add or remove a new feature to the API or UI
5-
- fix # Commits, that fix a API or UI bug of a preceded feat commit
6-
- refactor # Commits, that rewrite/restructure your code, however do not change any API or UI behaviour
7-
- perf # Commits are special `refactor` commits, that improve performance
8-
- style # Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)
9-
- test # Commits, that add missing tests or correcting existing tests
10-
- build # Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...
11-
- ops # Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...
12-
- docs # Commits, that affect documentation only
13-
- chore # Miscellaneous commits e.g. modifying `.gitignore`
14-
- docs
15-
- ci
16-
- merge
3+
- feat # Commits, that add or remove a new feature to the API or UI
4+
- fix # Commits, that fix a API or UI bug of a preceded feat commit
5+
- refactor # Commits, that rewrite/restructure your code, however do not change any API or UI behaviour
6+
- perf # Commits are special `refactor` commits, that improve performance
7+
- style # Commits, that do not affect the meaning (white-space, formatting, missing semi-colons, etc)
8+
- test # Commits, that add missing tests or correcting existing tests
9+
- build # Commits, that affect build components like build tool, ci pipeline, dependencies, project version, ...
10+
- ops # Commits, that affect operational components like infrastructure, deployment, backup, recovery, ...
11+
- docs # Commits, that affect documentation only
12+
- chore # Miscellaneous commits e.g. modifying `.gitignore`
13+
- docs
14+
- ci
15+
- merge
1716
commitScopes: []
1817
releaseTagGlobPattern: v[0-9]*.[0-9]*.[0-9]*
1918
changelog:
2019
commitTypes:
21-
- feat
22-
- fix
23-
- ci
24-
- perf
25-
- merge
20+
- feat
21+
- fix
22+
- ci
23+
- perf
24+
- merge
2625
includeInvalidCommits: true
2726
commitScopes: []
2827
commitIgnoreRegexPattern: "^WIP "

0 commit comments

Comments
 (0)