From e3a6e930b17bbe1fcdf82c0a149d92155c9de08f Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 19 Oct 2025 07:53:03 -0500 Subject: [PATCH] workflow/lint: fedora42 --- .forgejo/workflows/lint.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index cef3af0..c553841 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -10,13 +10,19 @@ on: # yamllint disable-line rule:truthy jobs: test: - runs-on: ubuntu-latest # tag on runner maps to 'node:20-bookworm' image + runs-on: docker + container: + image: fedora:42 # lock to *latest stable*; rawhide/next is 'latest' tag steps: + - name: Requirements + run: | + echo -e 'max_parallel_downloads=20\ndeltarpm=False\nfastestmirror=False' | tee -a /etc/dnf/dnf.conf + dnf -yq in nodejs git-core python3-pip + - uses: actions/checkout@v4 - uses: actions/setup-python@v6 with: - python-version: 3.13 cache: 'pip' - name: ansible/collections