diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c7f58c3..c94906c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,6 +5,8 @@ updates: directory: / schedule: interval: weekly + cooldown: + default-days: 7 groups: actions-minor: update-types: diff --git a/.github/workflows/amplify.yml b/.github/workflows/amplify.yml index b1eecfe..8725035 100644 --- a/.github/workflows/amplify.yml +++ b/.github/workflows/amplify.yml @@ -20,5 +20,7 @@ jobs: if: (!github.event.pull_request.head.repo.fork && github.actor != 'dependabot[bot]') steps: - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + with: + persist-credentials: false - name: Amplify Runner - uses: amplify-security/runner-action@main + uses: amplify-security/runner-action@main # zizmor: ignore[unpinned-uses] diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 51bb92a..f251db7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ on: permissions: contents: read - id-token: write + id-token: write # zizmor: ignore[excessive-permissions] jobs: test-action-lab: @@ -24,6 +24,8 @@ jobs: - name: Checkout id: checkout uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + with: + persist-credentials: false - name: Test Local Action (Lab) id: test-action @@ -39,6 +41,8 @@ jobs: - name: Checkout id: checkout uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 + with: + persist-credentials: false - name: Test Local Action id: test-action-prod diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index fc1fad5..45b1188 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -23,10 +23,11 @@ jobs: uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 with: fetch-depth: 0 + persist-credentials: false - name: Lint Codebase id: super-linter - uses: super-linter/super-linter/slim@5119dcd8011e92182ce8219d9e9efc82f16fddb6 # v8.0.0 + uses: super-linter/super-linter/slim@d5b0a2ab116623730dd094f15ddc1b6b25bf7b99 # v8.3.2 env: DEFAULT_BRANCH: main GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}