Skip to content

Commit

Permalink
Merge pull request #240 from coveooss/renovate/peaceiris-actions-gh-p…
Browse files Browse the repository at this point in the history
…ages-digest

chore(deps): update peaceiris/actions-gh-pages digest to a16b61f
  • Loading branch information
jonapich authored Apr 9, 2024
2 parents b497157 + 376e5de commit de00ba4
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@bd8c6b06eba6b3d25d72b7a1767993c0aeee42e7
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 de00ba4

Please sign in to comment.