mirror of
https://github.com/goauthentik/authentik.git
synced 2026-08-30 18:51:39 -07:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](9c091bb21b...3d3c42e5aa)
---
updated-dependencies:
- dependency-name: actions/checkout
dependency-version: 7.0.1
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
23 lines
470 B
YAML
23 lines
470 B
YAML
---
|
|
name: Release - Update next branch
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 12 * * *" # every day at noon
|
|
workflow_dispatch:
|
|
|
|
permissions:
|
|
# Needed to be able to push to the next branch
|
|
contents: write
|
|
|
|
jobs:
|
|
update-next:
|
|
runs-on: ubuntu-latest
|
|
environment: internal-production
|
|
steps:
|
|
- uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v5
|
|
with:
|
|
ref: main
|
|
- run: |
|
|
git push origin --force main:next
|