Skip to content

Commit 8cf7927

Browse files
authored
Merge pull request #795 from cclauss/patch-1
Upgrade GitHub Actions
2 parents bd5b09a + 6409004 commit 8cf7927

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

.github/workflows/check-markdown.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ jobs:
55
lint:
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
with:
1010
fetch-depth: 0
1111

12-
- uses: tj-actions/changed-files@v45
12+
- uses: tj-actions/changed-files@v47
1313
id: changed-files
1414
with:
1515
files: '**/*.md'
1616
separator: ","
1717

18-
- uses: DavidAnson/markdownlint-cli2-action@v17
18+
- uses: DavidAnson/markdownlint-cli2-action@v20
1919
if: steps.changed-files.outputs.any_changed == 'true'
2020
with:
2121
globs: ${{ steps.changed-files.outputs.all_changed_files }}
2222
separator: ","
23-
config: ./.github/.markdownlint.json
23+
config: ./.github/.markdownlint.json

.github/workflows/mkdocs-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
11+
- uses: actions/checkout@v5
1212
with:
1313
submodules: recursive
1414

1515
# Checks-out submodules
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v5
1717
- name: Checkout submodules
1818
shell: bash
1919
run: |
@@ -23,7 +23,7 @@ jobs:
2323
git submodule add https://github.com/swisskyrepo/PayloadsAllTheThings/ docs
2424
mv docs/.github/overrides .
2525
26-
- uses: actions/setup-python@v2
26+
- uses: actions/setup-python@v6
2727
with:
2828
python-version: 3.x
2929
- run: pip install mkdocs-material

0 commit comments

Comments
 (0)