We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 980728e + 5dfdc14 commit b40ad09Copy full SHA for b40ad09
.github/workflows/markdowner.yml
@@ -5,18 +5,17 @@ on:
5
branches: [ master ]
6
pull_request:
7
8
- workflow_dispatch:
9
10
jobs:
11
check:
12
- runs-on: ubuntu-latest
+ runs-on: ubuntu-24.04
13
steps:
14
- name: Checks-out repository
15
- uses: actions/checkout@v2
16
- - name: Set up Python 3.7
17
- uses: actions/setup-python@v2
+ uses: actions/checkout@v4
+ - name: Set up Python 3.12
+ uses: actions/setup-python@v5
18
with:
19
- python-version: "3.7"
+ python-version: "3.12"
20
- name: Run markdowner.py to (hopefully not) edit markdown files
21
run: |
22
find . -name '*.markdown' -type f -exec python3 .github/workflows/markdowner.py {} all \; | tee output.log
0 commit comments