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/build-and-publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
packages: write
name: Build and publish
steps:
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v7

- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v3.4.0
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-documents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ jobs:
filters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- uses: dorny/paths-filter@v3.0.2
- uses: actions/checkout@v7
- uses: dorny/paths-filter@v4.0.2
id: filter
with:
filters: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-4.0-outputs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- uses: actions/checkout@v4.2.2
- uses: actions/checkout@v7
- run: make 4.0
- uses: actions/upload-artifact@v4.4.3
- uses: actions/upload-artifact@v7.0.1
with:
name: ASVS 4.0.3
path: 4.0/docs_*
4 changes: 2 additions & 2 deletions .github/workflows/create-5.0-outputs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ jobs:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- uses: actions/checkout@v4.1.1
- uses: actions/checkout@v7
- run: make 5.0
env:
LANGS: ${{ inputs.languages || github.event.inputs.languages || 'en' }}
- uses: actions/upload-artifact@v4.3.0
- uses: actions/upload-artifact@v7.0.1
with:
name: ASVS 5.0.0
path: 5.0/dist/
2 changes: 1 addition & 1 deletion .github/workflows/markdown-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
uses: actions/checkout@v7
with:
fetch-depth: 1
- name: markdownlint-cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish-5.0-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
name: Publish 5.0 Latest
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v7
- name: Download 5.0 artifact
uses: actions/download-artifact@v4.3.0
uses: actions/download-artifact@v8.0.1
with:
name: ASVS 5.0.0
path: ./asvs-5.0-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/spell-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4.2.2
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v4
Expand All @@ -35,7 +35,7 @@ jobs:
- name: Get changed files (PR only)
if: github.event_name == 'pull_request'
id: files
uses: tj-actions/changed-files@v46
uses: tj-actions/changed-files@v47
with:
files: |
5.0/en/**/*.md
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/url-checker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4.2.2
uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate_translation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Set up Python
uses: actions/setup-python@v5
Expand Down