Skip to content

Commit 284cbe4

Browse files
committed
fix: hugo extended
- [x] delete pr-label-checker action, not needed anymore - [x] update dependabot to group PRs - [x] use SHAs for github actions instead of tags Signed-off-by: jmeridth <[email protected]>
1 parent 9d88f6a commit 284cbe4

File tree

3 files changed

+10
-28
lines changed

3 files changed

+10
-28
lines changed

.github/dependabot.yml

+6
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,9 @@ updates:
77
interval: "daily"
88
commit-message:
99
prefix: "chore(deps)"
10+
groups:
11+
dependencies:
12+
applies-to: version-updates
13+
update-types:
14+
- "minor"
15+
- "patch"

.github/workflows/gh-pages.yaml

+4-3
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,22 @@ jobs:
1010
deploy:
1111
runs-on: ubuntu-20.04
1212
steps:
13-
- uses: actions/checkout@v4
13+
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # tag v4.1.4
1414
with:
1515
submodules: true
1616
fetch-depth: 0
1717

1818
- name: Setup Hugo
19-
uses: peaceiris/actions-hugo@v3
19+
uses: peaceiris/actions-hugo@75d2e84710de30f6ff7268e08f310b60ef14033f # tag v3.0.0
2020
with:
2121
hugo-version: 'latest'
22+
extended: true
2223

2324
- name: Build
2425
run: hugo --minify
2526

2627
- name: Deploy
27-
uses: peaceiris/actions-gh-pages@v4
28+
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # tag v4.0.0
2829
if: github.ref == 'refs/heads/main'
2930
with:
3031
github_token: ${{ secrets.GITHUB_TOKEN }}

.github/workflows/pr-label-checker.yaml

-25
This file was deleted.

0 commit comments

Comments
 (0)