mirror of
https://codeberg.org/tmayoff/.dotfiles.git
synced 2025-12-06 08:48:34 -05:00
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [actions/checkout](https://github.com/actions/checkout) | action | major | `v4` -> `v6` | --- > ⚠️ **Warning** > > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>actions/checkout (actions/checkout)</summary> ### [`v6`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v600) [Compare Source](https://github.com/actions/checkout/compare/v5...v6) - Persist creds to a separate file by [@​ericsciple](https://github.com/ericsciple) in [#​2286](https://github.com/actions/checkout/pull/2286) - Update README to include Node.js 24 support details and requirements by [@​salmanmkc](https://github.com/salmanmkc) in [#​2248](https://github.com/actions/checkout/pull/2248) ### [`v5`](https://github.com/actions/checkout/blob/HEAD/CHANGELOG.md#v501) [Compare Source](https://github.com/actions/checkout/compare/v4...v5) - Port v6 cleanup to v5 by [@​ericsciple](https://github.com/ericsciple) in [#​2301](https://github.com/actions/checkout/pull/2301) </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNjkuMyIsInVwZGF0ZWRJblZlciI6IjQyLjI0LjAiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=--> Co-authored-by: Renovate Bot <bot@renovateapp.com> Reviewed-on: https://codeberg.org/tmayoff/.dotfiles/pulls/54
60 lines
1.7 KiB
YAML
60 lines
1.7 KiB
YAML
name: Renovate
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch: # allows manual triggering
|
|
schedule:
|
|
- cron: '0 0 * * 5' # runs weekly on Friday at 00:00
|
|
|
|
jobs:
|
|
renovate:
|
|
runs-on: kaylee
|
|
permissions:
|
|
id-token: "write"
|
|
contents: "read"
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v6
|
|
|
|
- name: Install Nix
|
|
uses: https://github.com/DeterminateSystems/nix-installer-action@main
|
|
|
|
- name: Magic Nix Cache
|
|
uses: https://github.com/DeterminateSystems/magic-nix-cache-action@main
|
|
with:
|
|
use-flakehub: false
|
|
use-gha-cache: true
|
|
env:
|
|
ACTIONS_CACHE_URL: ${{ env.ACTIONS_CACHE_URL }}
|
|
ACTIONS_RESULTS_URL: ${{ env.ACTIONS_RESULTS_URL }}
|
|
ACTIONS_RUNTIME_TOKEN: ${{ github.token }}
|
|
ACTIONS_CACHE_SERVICE_V2: ${{ env.ACTIONS_CACHE_SERVICE_V2 }}
|
|
|
|
- name: Run Renovate
|
|
env:
|
|
# Platform configuration
|
|
RENOVATE_PLATFORM: forgejo
|
|
RENOVATE_ENDPOINT: https://codeberg.org/api/v1
|
|
RENOVATE_TOKEN: ${{ secrets.RENOVATE_TOKEN }}
|
|
RENOVATE_GITHUB_COM_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
|
|
|
|
# Repository configuration
|
|
RENOVATE_REPOSITORIES: ${{ github.repository }}
|
|
|
|
# Git configuration
|
|
RENOVATE_GIT_AUTHOR: 'Renovate Bot <bot@renovateapp.com>'
|
|
RENOVATE_USERNAME: 'renovate-bot'
|
|
|
|
# Renovate settings
|
|
RENOVATE_ONBOARDING: 'false'
|
|
RENOVATE_REQUIRE_CONFIG: 'required'
|
|
RENOVATE_CONFIG_FILE: '${{ github.workspace }}/renovate.json'
|
|
|
|
# Logging
|
|
LOG_LEVEL: 'info'
|
|
|
|
# Reduce external API calls
|
|
RENOVATE_AUTODISCOVER: 'false'
|
|
run: |
|
|
nix run nixpkgs#renovate
|