Compare commits
4 commits
b9734a5780
...
9addf06ffb
Author | SHA1 | Date | |
---|---|---|---|
9addf06ffb | |||
03b6db7665 | |||
59f70e50c0 | |||
0529706565 |
1 changed files with 11 additions and 2 deletions
|
@ -1,6 +1,9 @@
|
||||||
on:
|
on:
|
||||||
schedule:
|
schedule:
|
||||||
- cron: '*/30 * * * *'
|
- cron: '*/30 * * * *'
|
||||||
|
push:
|
||||||
|
branches: ["main"]
|
||||||
|
paths: [".forgejo/workflows/renovate.yaml"]
|
||||||
# workflow_dispatch:
|
# workflow_dispatch:
|
||||||
# inputs:
|
# inputs:
|
||||||
# dryRun:
|
# dryRun:
|
||||||
|
@ -14,13 +17,19 @@ jobs:
|
||||||
name: Renovate
|
name: Renovate
|
||||||
runs-on: docker
|
runs-on: docker
|
||||||
container:
|
container:
|
||||||
image: ghcr.io/renovatebot/renovate:37.440.7@sha256:1ee424e0ed4d8e64e5bb2d442d6bc72b3809bb9d0cf804f4b7180caa47d6002a
|
image: ghcr.io/renovatebot/renovate:38.8.1@sha256:ec0a45b9c5e5210f363165529c2ee3292efc0dc9c06800f0baa3435db2e67c96
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
|
||||||
with:
|
with:
|
||||||
show-progress: false
|
show-progress: false
|
||||||
|
- name: Write ssh key
|
||||||
|
id: sshkey
|
||||||
|
uses: https://github.com/timheuer/base64-to-file@v1
|
||||||
|
with:
|
||||||
|
encodedString: "${{ secrets.SSH_USER }}"
|
||||||
|
fileName: id_ed25519
|
||||||
|
fileDir: ~/.ssh
|
||||||
- name: Renovate
|
- name: Renovate
|
||||||
uses: ./.forgejo/actions/renovate
|
uses: ./.forgejo/actions/renovate
|
||||||
with:
|
with:
|
||||||
|
|
Loading…
Reference in a new issue