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
11 changes: 6 additions & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
--max-retries 1
--retry-wait-time 10
--max-concurrency 2
'**/*.md'
'docs/**/*.md'
'docs/*.md'
'*.md'
fail: true
env:
Expand Down Expand Up @@ -147,7 +148,7 @@ jobs:
run: mkdocs build --config-file mkdocs-pdf-en.yaml

- name: Upload EN PDF
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: pdf-export-en
path: site/OWASP_Developer_Guide.pdf
Expand All @@ -156,7 +157,7 @@ jobs:
run: mkdocs build --config-file mkdocs-pdf-es.yaml

- name: Upload ES PDF
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: pdf-export-es
path: site/OWASP_Developer_Guide-ES.pdf
Expand All @@ -165,7 +166,7 @@ jobs:
run: mkdocs build --config-file mkdocs-pdf-fa.yaml

- name: Upload FA PDF
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: pdf-export-fa
path: site/OWASP_Developer_Guide-FA.pdf
Expand All @@ -174,7 +175,7 @@ jobs:
run: mkdocs build --config-file mkdocs-pdf-pt-br.yaml

- name: Upload PT-BR PDF
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: pdf-export-pt-br
path: site/OWASP_Developer_Guide-PT-BR.pdf
11 changes: 6 additions & 5 deletions .github/workflows/housekeeping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ jobs:
--max-retries 1
--retry-wait-time 10
--max-concurrency 2
'**/*.md'
'docs/**/*.md'
'docs/*.md'
'*.md'
fail: true
env:
Expand All @@ -60,14 +61,14 @@ jobs:

steps:
- name: Tidy stale PRs and issues
uses: actions/[email protected].0
uses: actions/[email protected].1
with:
days-before-issue-stale: 183
days-before-issue-close: -1
stale-issue-message: 'This issue is stale because it has been open for 6 months with no activity.'
stale-issue-label: stale
remove-issue-stale-when-updated: true
days-before-pr-stale: 42
days-before-pr-stale: 21
days-before-pr-close: 7
stale-pr-message: 'This PR is stale because it has been open 42 days with no activity. Remove stale label, or add a comment, otherwise it will be closed in 7 days.'
close-pr-message: 'This PR was closed because it has been stalled for 8 weeks with no activity.'
stale-pr-message: 'This PR is stale because it has been open 21 days with no activity. Remove stale label, or add a comment, otherwise it will be closed in 7 days.'
close-pr-message: 'This PR was closed because it has been stalled for 4 weeks with no activity.'
3 changes: 2 additions & 1 deletion .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ jobs:
--max-retries 1
--retry-wait-time 10
--max-concurrency 2
'**/*.md'
'docs/**/*.md'
'docs/*.md'
'*.md'
fail: true
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
run: mkdocs build

- name: Upload PDF
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: 'pdf-export'
path: 'site/OWASP_Developer_Guide.pdf'
Expand Down