8000 Merge pull request #4 from akaday/dependabot/pip/action_server/pip-aeca671e90 · akadev1/robocorp@7f1e5b7 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Metapackage Outdated #103

Metapackage Outdated

Metapackage Outdated #103

Workflow file for this run

name: Metapackage Outdated
on:
schedule:
- cron: '0 2 * * *'
defaults:
run:
working-directory: './meta'
jobs:
check:
runs-on: ubuntu-latest
strategy:
fail-fast: true
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
- name: Install poetry
run: pipx install poetry
- name: Set up Python 3.9
uses: actions/setup-python@v4
with:
python-version: 3.9
cache: 'poetry'
- name: Install project
run: poetry install
- name: Check tag version
run: poetry run invoke outdated
0