chore(deps): update dependency suzuki-shunsuke/github-comment to v6.3.2 (aqua/imports) #158
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 module | |
on: pull_request | |
jobs: | |
test-module: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
permissions: {} | |
env: | |
TFACTION_TARGET: module | |
TFACTION_JOB_TYPE: terraform | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
persist-credentials: false | |
- name: Generate token | |
id: token | |
uses: tibdex/github-app-token@3beb63f4bd073e61482598c45c71c1019b59b73a # v2.1.0 | |
with: | |
app_id: ${{secrets.APP_ID}} | |
private_key: ${{secrets.APP_PRIVATE_KEY}} | |
# pull_requests:write - Post comments | |
# contents:write - Push commits | |
permissions: >- | |
{ | |
"pull_requests": "write", | |
"contents": "write" | |
} | |
repositories: >- | |
["${{github.event.repository.name}}"] | |
- uses: aquaproj/aqua-installer@e2d0136abcf70b7a2f6f505720640750557c4b33 # v3.1.1 | |
with: | |
aqua_version: v2.43.2 | |
env: | |
AQUA_GITHUB_TOKEN: ${{github.token}} | |
- uses: suzuki-shunsuke/tfaction/install@pr/2176 | |
- name: Test Module | |
uses: suzuki-shunsuke/tfaction/test-module@pr/2176 | |
with: | |
github_token: ${{steps.token.outputs.token}} |