diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 4dbec43ee..db4a922e9 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,5 +1,14 @@ version: 2 updates: +- package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "weekly" + day: "sunday" + labels: + - "ok-to-test" + - 'area/dependency' + - 'release-note-none' - package-ecosystem: gomod directories: - "/" diff --git a/.github/workflows/auto-tag.yml b/.github/workflows/auto-tag.yml index d127e7685..e4d2e2fe5 100644 --- a/.github/workflows/auto-tag.yml +++ b/.github/workflows/auto-tag.yml @@ -12,7 +12,7 @@ jobs: contents: write steps: - name: Checkout code - uses: actions/checkout@v4 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: fetch-depth: 0 # Fetch all history and tags diff --git a/.github/workflows/dependabot-sync.yml b/.github/workflows/dependabot-sync.yml index ecbac61f0..a8ae841a8 100644 --- a/.github/workflows/dependabot-sync.yml +++ b/.github/workflows/dependabot-sync.yml @@ -15,12 +15,12 @@ jobs: if: github.actor == 'dependabot[bot]' steps: - name: Checkout repository - uses: actions/checkout@v4 + uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd with: ref: ${{ github.event.pull_request.head.ref }} - name: Setup Go - uses: actions/setup-go@v5 + uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c with: go-version-file: 'go.work'