Skip to content

Commit c518547

Browse files
authored
Merge pull request #124 from google/update-to-v2.3.5
Update to v2.3.5
2 parents a30b4c3 + 1fc5ec2 commit c518547

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

.github/workflows/osv-scanner-reusable-pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
git checkout $GITHUB_BASE_REF
6767
git submodule update --recursive
6868
- name: "Run scanner on existing code"
69-
uses: google/osv-scanner-action/osv-scanner-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3
69+
uses: google/osv-scanner-action/osv-scanner-action@7222d1c7ee4f96d71d883e0d3c603f1e1705eca9 # v2.3.5
7070
continue-on-error: true
7171
with:
7272
scan-args: |-
@@ -79,15 +79,15 @@ jobs:
7979
git checkout -f $GITHUB_SHA
8080
git submodule update --recursive
8181
- name: "Run scanner on new code"
82-
uses: google/osv-scanner-action/osv-scanner-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3
82+
uses: google/osv-scanner-action/osv-scanner-action@7222d1c7ee4f96d71d883e0d3c603f1e1705eca9 # v2.3.5
8383
with:
8484
scan-args: |-
8585
--format=json
8686
--output=${{ inputs.matrix-property }}new-results.json
8787
${{ inputs.scan-args }}
8888
continue-on-error: true
8989
- name: "Run osv-scanner-reporter"
90-
uses: google/osv-scanner-action/osv-reporter-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3
90+
uses: google/osv-scanner-action/osv-reporter-action@7222d1c7ee4f96d71d883e0d3c603f1e1705eca9 # v2.3.5
9191
with:
9292
scan-args: |-
9393
--output=${{ inputs.matrix-property }}${{ inputs.results-file-name }}

.github/workflows/osv-scanner-reusable.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,15 +77,15 @@ jobs:
7777
name: "${{ inputs.download-artifact }}"
7878
path: "./"
7979
- name: "Run scanner"
80-
uses: google/osv-scanner-action/osv-scanner-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3
80+
uses: google/osv-scanner-action/osv-scanner-action@7222d1c7ee4f96d71d883e0d3c603f1e1705eca9 # v2.3.5
8181
with:
8282
scan-args: |-
8383
--output=${{ inputs.matrix-property }}results.json
8484
--format=json
8585
${{ inputs.scan-args }}
8686
continue-on-error: true
8787
- name: "Run osv-scanner-reporter"
88-
uses: google/osv-scanner-action/osv-reporter-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3
88+
uses: google/osv-scanner-action/osv-reporter-action@7222d1c7ee4f96d71d883e0d3c603f1e1705eca9 # v2.3.5
8989
with:
9090
scan-args: |-
9191
--output=${{ inputs.matrix-property }}${{ inputs.results-file-name }}

.github/workflows/osv-scanner-unified-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ permissions:
3535
jobs:
3636
scan-scheduled:
3737
if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }}
38-
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@8ae4be80636b94886b3c271caad730985ce0611c" # v2.3.3
38+
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@3d5827dbebf8a3f7ba681e730a8a1b116e8ebddd" # v2.3.5
3939
with:
4040
# Example of specifying custom arguments
4141
scan-args: |-
@@ -44,7 +44,7 @@ jobs:
4444
./
4545
scan-pr:
4646
if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }}
47-
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@8ae4be80636b94886b3c271caad730985ce0611c" # v2.3.3
47+
uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@3d5827dbebf8a3f7ba681e730a8a1b116e8ebddd" # v2.3.5
4848
with:
4949
# Example of specifying custom arguments
5050
scan-args: |-

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OSV-Scanner CI/CD Action
22

3-
[![Release v2.3.3](https://img.shields.io/badge/release-v2.3.3-blue?style=flat)](https://github.com/google/osv-scanner-action/releases)
3+
[![Release v2.3.5](https://img.shields.io/badge/release-v2.3.5-blue?style=flat)](https://github.com/google/osv-scanner-action/releases)
44
<!-- Hard coded release version -->
55

66
The OSV-Scanner CI/CD action leverages the [OSV.dev](https://osv.dev/) database and the [OSV-Scanner](https://google.github.io/osv-scanner/) CLI tool to track and notify you of known vulnerabilities in your dependencies for over 11 [languages and ecosystems](https://google.github.io/osv-scanner/supported-languages-and-lockfiles/).

osv-reporter-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ inputs:
2222
required: true
2323
runs:
2424
using: "docker"
25-
image: "docker://ghcr.io/google/osv-scanner-action:v2.3.3"
25+
image: "docker://ghcr.io/google/osv-scanner-action:v2.3.5"
2626
entrypoint: /root/osv-reporter
2727
args:
2828
- "${{ inputs.scan-args }}"

osv-scanner-action/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,6 @@ inputs:
2424
./
2525
runs:
2626
using: "docker"
27-
image: "docker://ghcr.io/google/osv-scanner-action:v2.3.3"
27+
image: "docker://ghcr.io/google/osv-scanner-action:v2.3.5"
2828
args:
2929
- ${{ inputs.scan-args }}

0 commit comments

Comments
 (0)