chore(deps): bump github.com/a-h/templ from 0.2.771 to 0.2.778 in /ap… #50
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Dependency Module | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- dependency/** | |
- .github/workflows/dependency.yml | |
permissions: | |
# Needed to read the content of the repository | |
contents: read | |
# Needed for the static analysis result upload | |
security-events: write | |
# Needed for golangci-lint for the only-new-issues flag | |
pull-requests: read | |
# Needed to annotate the code with the scan results > https://github.blog/2018-12-14-introducing-check-runs-and-annotations/ | |
checks: write | |
defaults: | |
run: | |
shell: bash | |
working-directory: ./dependency/... | |
jobs: | |
test: | |
uses: lvlcn-t/meta/.github/workflows/test.yml@main | |
with: | |
go_version_file: ./dependency/go.mod | |
golangci_config: skip | |
private_go_server: "" | |
before_tests: "" | |
additional_args: -v | |
package: ./dependency/... | |
secrets: | |
PRIVATE_GO_SERVER_TOKEN: ${{ secrets.PRIVATE_GO_SERVER_TOKEN }} |