From 17b892e6b66cd2576cdd52525a08ccc1728b7fa6 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Sat, 8 Nov 2025 17:45:07 +0100 Subject: [PATCH] chore(deps): pin dependencies (#9) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/cache](https://github.com/actions/cache) | action | pinDigest | -> `0057852` | | [actions/checkout](https://github.com/actions/checkout) | action | pinDigest | -> `08c6903` | --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). Reviewed-on: https://gitea.t000-n.de/t.behrendt/trivy-actions/pulls/9 Reviewed-by: t.behrendt Co-authored-by: Renovate Bot Co-committed-by: Renovate Bot --- .gitea/workflows/cd.yaml | 2 +- .gitea/workflows/ci.yaml | 4 ++-- .gitea/workflows/prerelease.yaml | 2 +- setup-db/action.yaml | 2 +- setup-trivy/action.yaml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/cd.yaml b/.gitea/workflows/cd.yaml index 73ee081..8c4cd44 100644 --- a/.gitea/workflows/cd.yaml +++ b/.gitea/workflows/cd.yaml @@ -10,7 +10,7 @@ jobs: name: Release runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: fetch-depth: 0 - name: Increment tag diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 83f7839..e37790c 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -10,7 +10,7 @@ jobs: - ubuntu-latest - linux_amd64 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - name: Setup Trivy uses: ./setup-trivy with: @@ -25,7 +25,7 @@ jobs: - ubuntu-latest - linux_amd64 steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 - uses: ./setup-trivy with: version: v0.66.0 diff --git a/.gitea/workflows/prerelease.yaml b/.gitea/workflows/prerelease.yaml index be5c620..79032a4 100644 --- a/.gitea/workflows/prerelease.yaml +++ b/.gitea/workflows/prerelease.yaml @@ -8,7 +8,7 @@ jobs: name: Prerelease runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5 with: fetch-depth: 0 - name: Increment tag diff --git a/setup-db/action.yaml b/setup-db/action.yaml index e0ec698..27191bc 100644 --- a/setup-db/action.yaml +++ b/setup-db/action.yaml @@ -19,7 +19,7 @@ runs: run: | echo "current-date=$(date +%Y-%m-%d)" >> $GITHUB_OUTPUT - id: restore-db - uses: actions/cache@v4 + uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 with: path: ${{ inputs.cache-dir }} key: trivy-db-${{ steps.current-date.outputs.current-date }} diff --git a/setup-trivy/action.yaml b/setup-trivy/action.yaml index a04c955..a9f18af 100644 --- a/setup-trivy/action.yaml +++ b/setup-trivy/action.yaml @@ -20,7 +20,7 @@ runs: steps: - name: Cache Trivy binary id: cache-trivy - uses: actions/cache@v4 + uses: actions/cache@0057852bfaa89a56745cba8c7296529d2fc39830 # v4 with: path: /usr/local/bin/trivy key: trivy-${{ inputs.version }}-${{ inputs.architecture }}