From 853286c7ab66048e4b819682ce17f567b77a0291 Mon Sep 17 00:00:00 2001 From: Ties Stuij Date: Wed, 25 Sep 2024 10:47:58 +0100 Subject: [PATCH] Bumping github actions versions - update checkout to v4, v2 is using a node that will soon be depreciated - upload-artifact to v4, v2 has become depreciated - update setup-python to v5, just to stay up-to-date --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3b327c5f..4c5381ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,9 +7,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: setup python - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: '3.x' - name: install packages @@ -18,7 +18,7 @@ jobs: run: tools/common/check-rst-syntax.sh - name: build PDFs run: tools/rst2pdf/generate-pdfs.sh PDFs - - uses: actions/upload-artifact@v2 + - uses: actions/upload-artifact@v4 with: name: PDFs path: PDFs