From 47234ad29f288e01626e3dd352dde696d849b6ce Mon Sep 17 00:00:00 2001 From: Josh Lay Date: Sun, 19 Oct 2025 10:15:26 -0500 Subject: [PATCH] workflow: bump checkout, remove quotes on pip-install --- .forgejo/workflows/lint.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/lint.yml b/.forgejo/workflows/lint.yml index 99f00d3..dde5e7f 100644 --- a/.forgejo/workflows/lint.yml +++ b/.forgejo/workflows/lint.yml @@ -18,12 +18,12 @@ jobs: apt-get update apt-get --no-install-recommends --assume-yes install nodejs git ca-certificates lsb-release - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-python@v6 with: python-version: '3.13' cache: 'pip' - pip-install: '-r requirements.txt' + pip-install: -r requirements.txt - name: cache '.ansible/collections' id: cache-collections