Skip to content

Commit

Permalink
Upgrade CI dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
realRobotix authored and petrvanekrobe committed Nov 6, 2024
1 parent 462c060 commit 8e03c28
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/check-links.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@ on: push

jobs:
test_links_in_readme:
runs-on: ubuntu-22.04
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: List files
run: ls -la
- uses: docker://pandoc/core:2.9
- uses: docker://pandoc/core:latest
with:
args: >- # allows you to break string into multiple lines
--standalone
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/generate-doc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,22 @@ on: push

jobs:
generate_doc:
runs-on: ubuntu-22.04
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: List files
run: |
ls -la
mkdir output
- uses: docker://pandoc/core:2.9
- uses: docker://pandoc/core:latest
with:
args: >- # allows you to break string into multiple lines
--standalone
--from markdown
--output=mvr-spec.docx
mvr-spec.md
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: mvr-spec
path: mvr-spec.docx

0 comments on commit 8e03c28

Please sign in to comment.