Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
markdown-link-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v7
Comment thread
jonathannorris marked this conversation as resolved.
- uses: byrnereese/github-action-mkdocs-link-check@1.0
with:
verbose-mode: 'yes'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/diagrams.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,20 @@ jobs:
name: Generate
steps:
- name: Checkout Source
uses: actions/checkout@v4
uses: actions/checkout@v7
Comment thread
jonathannorris marked this conversation as resolved.
with:
ref: ${{ github.head_ref }}
- name: Get changed UML files
id: getfile
run: |
echo "::set-output name=files::$(git diff --name-only HEAD^ HEAD | grep .puml | xargs)"
echo "files=$(git diff --name-only HEAD^ HEAD | grep .puml | xargs)" >> "$GITHUB_OUTPUT"

- name: Generate SVG Diagrams
uses: holowinski/plantuml-github-action@2e381afb2bae7e169b76bfb068e8d8b2089106ee
with:
args: -v -tsvg "diagrams/**.puml" -o "../static/diagrams"

- name: Push Local Changes
uses: stefanzweifel/git-auto-commit-action@v4.1.2
uses: stefanzweifel/git-auto-commit-action@4a55954c782fc1ea30b9056cd3e7a2b40ca8887d # v7.2.0
with:
commit_message: "Generate SVG files for PlantUML diagrams"
commit_message: "Generate SVG files for PlantUML diagrams"
2 changes: 1 addition & 1 deletion .github/workflows/licenses.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
name: License Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
Comment thread
jonathannorris marked this conversation as resolved.
- uses: DevCycleHQ/license-action@main
with:
language: "javascript"
Loading