Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,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 +156,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 +165,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 +174,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
9 changes: 5 additions & 4 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 @@ -67,7 +68,7 @@ jobs:
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.'
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
Loading