Skip to content

Commit

Permalink
update tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
tylertitsworth committed Jun 20, 2024
1 parent 9b5e6f1 commit e68e575
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/container-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,4 @@ jobs:
registry: ${{ secrets.REGISTRY }}
repo: ${{ secrets.REPO }}
test_dir: ${{ matrix.tests }}
token: ${{ secrets.ACTION_TOKEN || github.token }}
token: ${{ secrets.PERF_TOKEN }}
9 changes: 3 additions & 6 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ name: Lint
permissions: read-all
on:
merge_group: null
pull_request_target:
types: [opened, edited, reopened, synchronize]
branches: [main]
pull_request: null
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
Expand All @@ -32,10 +30,9 @@ jobs:
with:
egress-policy: audit
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
if: ${{ github.event_name == 'pull_request_target' }}
if: ${{ github.event_name == 'pull_request' }}
with:
fetch-depth: 0
ref: "refs/pull/${{ github.event.number }}/merge"
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
if: ${{ github.event_name == 'merge_group' }}
with:
Expand All @@ -44,7 +41,7 @@ jobs:
- uses: super-linter/super-linter/slim@88ea3923a7e1f89dd485d079f6eb5f5e8f937589 # v6.6.0
env:
# To report GitHub Actions status checks
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_ACTIONS_COMMAND_ARGS: '-ignore SC.*'
VALIDATE_BASH_EXEC: false
VALIDATE_CHECKOV: false
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-runner-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
with:
path: models-perf
repository: ${{ secrets.PERF_REPO }}
token: ${{ secrets.ACTION_TOKEN }}
token: ${{ secrets.PERF_TOKEN }}
- uses: docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3.0
with:
driver: docker
Expand Down Expand Up @@ -150,4 +150,4 @@ jobs:
registry: ${{ secrets.REGISTRY }}
repo: ${{ secrets.REPO }}
test_dir: test-runner
token: ${{ secrets.ACTION_TOKEN }}
token: ${{ secrets.PERF_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/weekly-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,5 @@ jobs:
fetch-depth: 0
- uses: gitleaks/gitleaks-action@44c470ffc35caa8b1eb3e8012ca53c2f9bea4eb5 # v2.3.6
env:
GITHUB_TOKEN: ${{ secrets.ACTION_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_LICENSE: ${{ secrets.GITLEAKS_LICENSE}}

0 comments on commit e68e575

Please sign in to comment.