mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-24 08:26:55 +00:00
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.0 to 6.0.1. - [Release notes](https://github.com/actions/checkout/releases) - [Commits](https://github.com/actions/checkout/compare/v6...v6.0.1) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
37 lines
1.3 KiB
YAML
37 lines
1.3 KiB
YAML
name: watchtower-update
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '00 12 * * *'
|
|
|
|
jobs:
|
|
watchtower-update:
|
|
name: update watchtower
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v6.0.1
|
|
- name: Run watchtower-container-update
|
|
run: |
|
|
# Watchtower
|
|
watchtower_version="$(
|
|
git ls-remote https://github.com/nicholas-fedor/watchtower v* \
|
|
| cut -d/ -f3 \
|
|
| sort -V \
|
|
| grep -E "^v[0-9\.]+$" \
|
|
| tail -1
|
|
)"
|
|
watchtower_commit_hash="$(git ls-remote https://github.com/nicholas-fedor/watchtower $watchtower_version | sed 's/refs.*//')"
|
|
sed -i "s|^ENV WATCHTOWER_COMMIT_HASH.*$|ENV WATCHTOWER_COMMIT_HASH=$watchtower_commit_hash|" ./Containers/watchtower/Dockerfile
|
|
sed -i "s|\$WATCHTOWER_COMMIT_HASH.*$|\$WATCHTOWER_COMMIT_HASH # $watchtower_version|" ./Containers/watchtower/Dockerfile
|
|
|
|
- name: Create Pull Request
|
|
uses: peter-evans/create-pull-request@84ae59a2cdc2258d6fa0732dd66352dddae2a412 # v7
|
|
with:
|
|
commit-message: watchtower-update automated change
|
|
signoff: true
|
|
title: watchtower container update
|
|
body: Automated watchtower container update
|
|
labels: dependencies, 3. to review
|
|
milestone: next
|
|
branch: watchtower-container-update
|