Skip to content

Commit

Permalink
Bumping github actions versions
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
stuij committed Sep 25, 2024
1 parent aa8733f commit 853286c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 853286c

Please sign in to comment.