Plone Versioncheck #5404
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
name: Plone Versioncheck | |
on: | |
schedule: | |
- cron: "40 6 * * 0" | |
# Allow to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
python-version: | |
- "3.10" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: ${{ matrix.branch }} | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: 'pip' | |
- name: "Install Python dependencies (pip)" | |
uses: "py-actions/py-dependency-install@v4" | |
with: | |
path: "requirements.txt" | |
- name: Cache eggs | |
uses: actions/cache@v4 | |
with: | |
path: | | |
eggs | |
key: eggs-${{ matrix.python-version }}-${{ runner.os }}-${{ hashFiles('versions*.cfg') }} | |
restore-keys: | | |
eggs-${{ matrix.python-version }}-${{ runner.os }}- | |
eggs-${{ matrix.python-version }}- | |
- name: Run buildout | |
run: | | |
buildout buildout:git-clone-depth=1 | |
- name: Plone version check | |
run: | | |
./bin/versioncheck -pnNbo versions.html | |
- name: Upload versions.html | |
uses: actions/upload-artifact@v4 | |
with: | |
name: versions-${{ matrix.python-version }} | |
path: versions.html |