Skip to content

Commit 999f62f

Browse files
authored
Merge pull request #174 : dependency updates for workflow actions
2 parents a993ef5 + 6349da9 commit 999f62f

File tree

6 files changed

+37
-31
lines changed

6 files changed

+37
-31
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ updates:
44
directory: ".github/workflows"
55
schedule:
66
interval: "monthly"
7+
cooldown:
8+
default-days: 10
79
groups:
810
version-update:
911
applies-to: version-updates

.github/workflows/ci.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
runs-on: ubuntu-24.04
2121
steps:
2222
- name: Checkout markdown
23-
uses: actions/checkout@v5.0.0
23+
uses: actions/checkout@v6.0.1
2424

2525
- name: Link Checker
2626
uses: lycheeverse/[email protected]
@@ -41,10 +41,10 @@ jobs:
4141
runs-on: ubuntu-24.04
4242
steps:
4343
- name: Checkout markdown
44-
uses: actions/checkout@v5.0.0
44+
uses: actions/checkout@v6.0.1
4545

4646
- name: Lint markdown
47-
uses: DavidAnson/markdownlint-cli2-action@v21.0.0
47+
uses: DavidAnson/markdownlint-cli2-action@v22.0.0
4848
with:
4949
config: '.markdownlint.yaml'
5050
globs: |
@@ -57,22 +57,22 @@ jobs:
5757
runs-on: ubuntu-24.04
5858
steps:
5959
- name: Checkout markdown
60-
uses: actions/checkout@v5.0.0
60+
uses: actions/checkout@v6.0.1
6161

6262
- name: Spell check EN language
63-
uses: rojopolis/spellcheck-github-actions@0.54.0
63+
uses: rojopolis/spellcheck-github-actions@0.55.0
6464
with:
6565
config_path: .spellcheck-en.yaml
6666

6767
- name: Spell check ES language
68-
uses: rojopolis/spellcheck-github-actions@0.54.0
68+
uses: rojopolis/spellcheck-github-actions@0.55.0
6969
with:
7070
config_path: .spellcheck-es.yaml
7171

7272
# rojopolis/spellcheck-github-actions does not support PT-BR,
7373
# only PT, and PT-BR is too different to pass a PT spellcheck
7474
- name: Set up Python for PT-BR
75-
uses: actions/setup-python@v6.0.0
75+
uses: actions/setup-python@v6.1.0
7676
with:
7777
python-version: '3.10'
7878

@@ -92,10 +92,10 @@ jobs:
9292
needs: [md_linter, spell_checker]
9393
steps:
9494
- name: Checkout markdown
95-
uses: actions/checkout@v5.0.0
95+
uses: actions/checkout@v6.0.1
9696

9797
- name: Install python
98-
uses: actions/setup-python@v6.0.0
98+
uses: actions/setup-python@v6.1.0
9999
with:
100100
python-version: 3.x
101101

@@ -125,10 +125,10 @@ jobs:
125125
needs: [md_linter, spell_checker]
126126
steps:
127127
- name: Checkout markdown
128-
uses: actions/checkout@v5.0.0
128+
uses: actions/checkout@v6.0.1
129129

130130
- name: Install python
131-
uses: actions/setup-python@v6.0.0
131+
uses: actions/setup-python@v6.1.0
132132
with:
133133
python-version: 3.x
134134

.github/workflows/housekeeping.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
keep_minimum_runs: 10
2626

2727
- name: Delete unused workflows
28-
uses: otto-de/[email protected].1
28+
uses: otto-de/[email protected].2
2929
with:
3030
token: ${{ github.token }}
3131

@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-24.04
3535
steps:
3636
- name: Checkout markdown
37-
uses: actions/checkout@v5.0.0
37+
uses: actions/checkout@v6.0.1
3838

3939
- name: Link Checker
4040
uses: lycheeverse/[email protected]

.github/workflows/pr.yaml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-24.04
1414
steps:
1515
- name: Checkout markdown
16-
uses: actions/checkout@v5.0.0
16+
uses: actions/checkout@v6.0.1
1717

1818
- name: Link Checker
1919
uses: lycheeverse/[email protected]
@@ -34,10 +34,10 @@ jobs:
3434
runs-on: ubuntu-24.04
3535
steps:
3636
- name: Checkout markdown
37-
uses: actions/checkout@v5.0.0
37+
uses: actions/checkout@v6.0.1
3838

3939
- name: Lint markdown
40-
uses: DavidAnson/markdownlint-cli2-action@v21.0.0
40+
uses: DavidAnson/markdownlint-cli2-action@v22.0.0
4141
with:
4242
config: '.markdownlint.yaml'
4343
globs: |
@@ -50,10 +50,10 @@ jobs:
5050
runs-on: ubuntu-24.04
5151
steps:
5252
- name: Checkout markdown
53-
uses: actions/checkout@v5.0.0
53+
uses: actions/checkout@v6.0.1
5454

5555
- name: Spell check EN language
56-
uses: rojopolis/spellcheck-github-actions@0.54.0
56+
uses: rojopolis/spellcheck-github-actions@0.55.0
5757
with:
5858
config_path: .spellcheck-en.yaml
5959

@@ -62,10 +62,10 @@ jobs:
6262
runs-on: ubuntu-24.04
6363
steps:
6464
- name: Checkout markdown
65-
uses: actions/checkout@v5.0.0
65+
uses: actions/checkout@v6.0.1
6666

6767
- name: Spell check ES language
68-
uses: rojopolis/spellcheck-github-actions@0.54.0
68+
uses: rojopolis/spellcheck-github-actions@0.55.0
6969
with:
7070
config_path: .spellcheck-es.yaml
7171

@@ -74,12 +74,12 @@ jobs:
7474
runs-on: ubuntu-24.04
7575
steps:
7676
- name: Checkout markdown
77-
uses: actions/checkout@v5.0.0
77+
uses: actions/checkout@v6.0.1
7878

7979
# rojopolis/spellcheck-github-actions does not support PT-BR,
8080
# only PT, and PT-BR is too different to pass a PT spellcheck
8181
- name: Set up Python
82-
uses: actions/setup-python@v6.0.0
82+
uses: actions/setup-python@v6.1.0
8383
with:
8484
python-version: '3.10'
8585

@@ -99,10 +99,10 @@ jobs:
9999
needs: [md_linter, spell_checker_en, spell_checker_es, spell_checker_pt-br]
100100
steps:
101101
- name: Checkout markdown
102-
uses: actions/checkout@v5.0.0
102+
uses: actions/checkout@v6.0.1
103103

104104
- name: Install python
105-
uses: actions/setup-python@v6.0.0
105+
uses: actions/setup-python@v6.1.0
106106
with:
107107
python-version: 3.x
108108

@@ -129,10 +129,10 @@ jobs:
129129
needs: [build_check]
130130
steps:
131131
- name: Checkout markdown
132-
uses: actions/checkout@v5.0.0
132+
uses: actions/checkout@v6.0.1
133133

134134
- name: Install python
135-
uses: actions/setup-python@v6.0.0
135+
uses: actions/setup-python@v6.1.0
136136
with:
137137
python-version: 3.x
138138

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ jobs:
1515
runs-on: ubuntu-24.04
1616
steps:
1717
- name: Checkout markdown
18-
uses: actions/checkout@v5.0.0
18+
uses: actions/checkout@v6.0.1
1919

2020
- name: Install python
21-
uses: actions/setup-python@v6.0.0
21+
uses: actions/setup-python@v6.1.0
2222
with:
2323
python-version: 3.x
2424

@@ -45,10 +45,10 @@ jobs:
4545
needs: [export_pdf]
4646
steps:
4747
- name: Check out
48-
uses: actions/checkout@v5.0.0
48+
uses: actions/checkout@v6.0.1
4949

5050
- name: Fetch prepared SBOM artifacts
51-
uses: actions/download-artifact@v6.0.0
51+
uses: actions/download-artifact@v7.0.0
5252
with:
5353
name: 'pdf-export'
5454
path: 'site/OWASP_Developer_Guide.pdf'
@@ -59,7 +59,7 @@ jobs:
5959
sed -e s/x.x.x/${releaseVersion:1}/g .release-note-template.md > ./release-notes.txt
6060
6161
- name: Create release notes
62-
uses: softprops/action-gh-release@v2.4.1
62+
uses: softprops/action-gh-release@v2.5.0
6363
with:
6464
draft: true
6565
name: "${releaseVersion:1}"

.lycheeignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,3 +47,7 @@ www.oreilly.com
4747
www.cve.org
4848
www.kali.org
4949
www.iso.org
50+
51+
# don't irritate the US government
52+
nvd.nist.gov/
53+

0 commit comments

Comments
 (0)