Skip to content

Commit

Permalink
tag the actions for renovate
Browse files Browse the repository at this point in the history
  • Loading branch information
jonapich committed Apr 9, 2024
1 parent 358a97a commit 376e5de
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Setup Hugo
if: github.ref == 'refs/heads/master'
uses: peaceiris/actions-hugo@c03b5dbed22245418539b65eb9a3b1d5fdd9a0a6
uses: peaceiris/actions-hugo@c03b5dbed22245418539b65eb9a3b1d5fdd9a0a6 # v2
with:
hugo-version: "0.82.0"
extended: true
Expand All @@ -38,7 +38,7 @@ jobs:
- name: Deploy Documentation
if: github.ref == 'refs/heads/master'
uses: peaceiris/actions-gh-pages@a16b61f0780be556cf97931905d261429ee79342
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4
with:
allow_empty_commit: false
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
Expand All @@ -47,7 +47,7 @@ jobs:

- name: Run GoReleaser
if: github.ref != 'refs/heads/master'
uses: goreleaser/goreleaser-action@b508e2e3ef3b19d4e4146d4f8fb3ba9db644a757
uses: goreleaser/goreleaser-action@b508e2e3ef3b19d4e4146d4f8fb3ba9db644a757 # v3
with:
distribution: goreleaser
version: latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- run: make test-all

- name: Setup Hugo
uses: peaceiris/actions-hugo@c03b5dbed22245418539b65eb9a3b1d5fdd9a0a6
uses: peaceiris/actions-hugo@c03b5dbed22245418539b65eb9a3b1d5fdd9a0a6 # v2
with:
hugo-version: "0.82.0"
extended: true
Expand Down
2 changes: 1 addition & 1 deletion utilities.go
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ func exclude(files []string, patterns []string) (result []string, err error) {
if err != nil {
return
}
if excluded, err = doublestar.Match(pattern, file); err != nil {
if excluded, err = doublestar.PathMatch(pattern, file); err != nil {
return
} else if excluded {
template.InternalLog.Tracef("%s ignored", files[i])
Expand Down

0 comments on commit 376e5de

Please sign in to comment.