From 16561dbe62637806fdcea2f4faf46d0a99488404 Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 19 Oct 2025 07:22:05 -0500 Subject: [PATCH] workflow/lint: pycache: use lts, drop fedora --- .forgejo/workflows/lint.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 3e9ad4b..ff73ee3 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -10,20 +10,21 @@ on: # yamllint disable-line rule:truthy jobs: test: - runs-on: docker - container: - image: fedora:42 # lock to *latest stable*; rawhide/next is 'latest' tag + runs-on: lts + # runs-on: docker + # container: + # image: fedora:42 # lock to *latest stable*; rawhide/next is 'latest' tag steps: - - name: Action Requirements - run: | - echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf - dnf -yq install nodejs git pipx + # - name: Action Requirements + # run: | + # echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf + # dnf -yq install nodejs git pipx - uses: actions/checkout@v4 # v5 needs nodejs 24+, f42 ships 22 - uses: actions/setup-python@v6 with: - python-version: '3.14' + python-version: '3.13' cache: 'pip' - name: ansible/collections