Scheduled Latest Vagrant Boxes verification #102
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
# SPDX-license-identifier: Apache-2.0 | |
############################################################################## | |
# Copyright (c) 2021 | |
# All rights reserved. This program and the accompanying materials | |
# are made available under the terms of the Apache License, Version 2.0 | |
# which accompanies this distribution, and is available at | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
############################################################################## | |
name: Scheduled Latest Vagrant Boxes verification | |
# yamllint disable-line rule:truthy | |
on: | |
schedule: | |
- cron: '0 0 1 * *' | |
workflow_dispatch: | |
jobs: | |
check-versions: | |
name: Check latest versions of Vagrant boxes | |
permissions: | |
contents: write # for technote-space/create-pr-action to push code | |
pull-requests: write # for technote-space/create-pr-action to create a PR | |
runs-on: macos-12 | |
steps: | |
- uses: actions/checkout@v4.1.6 | |
- uses: actions/cache@v4.0.2 | |
with: | |
path: ~/.vagrant.d/boxes | |
key: ${{ runner.os }}-vagrant-${{ hashFiles('distros_supported.yml') }} | |
restore-keys: | | |
${{ runner.os }}-vagrant- | |
- name: Install vagrant tool | |
run: brew install vagrant | |
- uses: technote-space/create-pr-action@v2.1.4 | |
with: | |
EXECUTE_COMMANDS: | | |
./ci/update_distros.sh | |
COMMIT_MESSAGE: 'Upgrade distro list versions' | |
COMMIT_NAME: 'electrocucaracha bot' | |
PR_BRANCH_NAME: "versions-update-${PR_ID}" | |
PR_TITLE: 'chore: update distro versions' |