Skip to content

Bump actions/checkout from 5 to 6 in the actions group #98

Bump actions/checkout from 5 to 6 in the actions group

Bump actions/checkout from 5 to 6 in the actions group #98

Workflow file for this run

name: autofix.ci
concurrency:
group: ${{ github.workflow }}-${{ github.event.number }}-${{ github.event.ref }}
cancel-in-progress: true
on: # yamllint disable-line rule:truthy
# We only do this on PRs to avoid the (admittedly unlikely) scenario that
# we run, green, wait, merge, then the build on `main` could fail because conda
# has updated during the "green" and then the "build on `main`" steps
pull_request:
branches: "*"
jobs:
deps:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.12"
- run: pip install packaging requests pyyaml
- run: python tests/test_outdated.py # can update the file in place
- uses: autofix-ci/action@635ffb0c9798bd160680f18fd73371e355b85f27
if: failure()