Skip to content

Commit

Permalink
Resolve Github Action Warnings (#1852)
Browse files Browse the repository at this point in the history
* update action versions; includes branched version of local deps

* update checkout action

* update upload-artifact action

* update checkout on build documents

* remove testing branch from dependencies
  • Loading branch information
ike authored Feb 4, 2024
1 parent 1756445 commit 9aeea26
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-publish-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:
packages: write
name: Build and publish
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1

- name: 'Login to GitHub Container Registry'
uses: docker/login-action@v1
uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{github.actor}}
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 @@ -14,8 +14,8 @@ jobs:
filters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dorny/paths-filter@v2
- uses: actions/checkout@v4.1.1
- uses: dorny/paths-filter@v3.0.0
id: filter
with:
filters: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/create-4.0-outputs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
name: Generate 4.0 outputs
steps:
- uses: docker/login-action@v2.2.0
- uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- run: make 4.0
- uses: actions/upload-artifact@v3.1.2
- uses: actions/upload-artifact@v4.3.0
with:
name: ASVS 4.0
path: 4.0/docs_*
6 changes: 3 additions & 3 deletions .github/workflows/create-5.0-outputs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
runs-on: ubuntu-latest
name: Generate 5.0 outputs
steps:
- uses: docker/login-action@v2.2.0
- uses: docker/login-action@v3.0.0
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.1
- run: make 5.0
- uses: actions/upload-artifact@v3.1.2
- uses: actions/upload-artifact@v4.3.0
with:
name: ASVS 5.0 Bleeding Edge
path: 5.0/dist/en/

0 comments on commit 9aeea26

Please sign in to comment.