From 8018483926dd235b3013d8c88023e644b9f8e09e Mon Sep 17 00:00:00 2001 From: Joey L Date: Thu, 12 Feb 2026 00:16:07 +0000 Subject: [PATCH 1/3] "Update actions to use v2.3.3 osv-scanner image" --- README.md | 2 +- osv-reporter-action/action.yml | 2 +- osv-scanner-action/action.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d502d5e..6e23671 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # OSV-Scanner CI/CD Action -[![Release v2.3.2](https://img.shields.io/badge/release-v2.3.2-blue?style=flat)](https://github.com/google/osv-scanner-action/releases) +[![Release v2.3.3](https://img.shields.io/badge/release-v2.3.3-blue?style=flat)](https://github.com/google/osv-scanner-action/releases) 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/). diff --git a/osv-reporter-action/action.yml b/osv-reporter-action/action.yml index a511234..92e1fb7 100644 --- a/osv-reporter-action/action.yml +++ b/osv-reporter-action/action.yml @@ -22,7 +22,7 @@ inputs: required: true runs: using: "docker" - image: "docker://ghcr.io/google/osv-scanner-action:v2.3.2" + image: "docker://ghcr.io/google/osv-scanner-action:v2.3.3" entrypoint: /root/osv-reporter args: - "${{ inputs.scan-args }}" diff --git a/osv-scanner-action/action.yml b/osv-scanner-action/action.yml index 18aa30c..d332d52 100644 --- a/osv-scanner-action/action.yml +++ b/osv-scanner-action/action.yml @@ -24,6 +24,6 @@ inputs: ./ runs: using: "docker" - image: "docker://ghcr.io/google/osv-scanner-action:v2.3.2" + image: "docker://ghcr.io/google/osv-scanner-action:v2.3.3" args: - ${{ inputs.scan-args }} From 8ae4be80636b94886b3c271caad730985ce0611c Mon Sep 17 00:00:00 2001 From: Joey L Date: Thu, 12 Feb 2026 00:16:08 +0000 Subject: [PATCH 2/3] Update reusable workflows to point to v2.3.3 actions --- .github/workflows/osv-scanner-reusable-pr.yml | 6 +++--- .github/workflows/osv-scanner-reusable.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/osv-scanner-reusable-pr.yml b/.github/workflows/osv-scanner-reusable-pr.yml index 0d071bc..9aabce1 100644 --- a/.github/workflows/osv-scanner-reusable-pr.yml +++ b/.github/workflows/osv-scanner-reusable-pr.yml @@ -66,7 +66,7 @@ jobs: git checkout $GITHUB_BASE_REF git submodule update --recursive - name: "Run scanner on existing code" - uses: google/osv-scanner-action/osv-scanner-action@9eebeaea7417372f39d21f50ad5ef4e6b3358566 # v2.3.2 + uses: google/osv-scanner-action/osv-scanner-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3 continue-on-error: true with: scan-args: |- @@ -79,7 +79,7 @@ jobs: git checkout -f $GITHUB_SHA git submodule update --recursive - name: "Run scanner on new code" - uses: google/osv-scanner-action/osv-scanner-action@9eebeaea7417372f39d21f50ad5ef4e6b3358566 # v2.3.2 + uses: google/osv-scanner-action/osv-scanner-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3 with: scan-args: |- --format=json @@ -87,7 +87,7 @@ jobs: ${{ inputs.scan-args }} continue-on-error: true - name: "Run osv-scanner-reporter" - uses: google/osv-scanner-action/osv-reporter-action@9eebeaea7417372f39d21f50ad5ef4e6b3358566 # v2.3.2 + uses: google/osv-scanner-action/osv-reporter-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3 with: scan-args: |- --output=${{ inputs.matrix-property }}${{ inputs.results-file-name }} diff --git a/.github/workflows/osv-scanner-reusable.yml b/.github/workflows/osv-scanner-reusable.yml index cee87a2..4ba8c55 100644 --- a/.github/workflows/osv-scanner-reusable.yml +++ b/.github/workflows/osv-scanner-reusable.yml @@ -77,7 +77,7 @@ jobs: name: "${{ inputs.download-artifact }}" path: "./" - name: "Run scanner" - uses: google/osv-scanner-action/osv-scanner-action@9eebeaea7417372f39d21f50ad5ef4e6b3358566 # v2.3.2 + uses: google/osv-scanner-action/osv-scanner-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3 with: scan-args: |- --output=${{ inputs.matrix-property }}results.json @@ -85,7 +85,7 @@ jobs: ${{ inputs.scan-args }} continue-on-error: true - name: "Run osv-scanner-reporter" - uses: google/osv-scanner-action/osv-reporter-action@9eebeaea7417372f39d21f50ad5ef4e6b3358566 # v2.3.2 + uses: google/osv-scanner-action/osv-reporter-action@8018483926dd235b3013d8c88023e644b9f8e09e # v2.3.3 with: scan-args: |- --output=${{ inputs.matrix-property }}${{ inputs.results-file-name }} From f4fac926054e3236b87692fa58d351da22518991 Mon Sep 17 00:00:00 2001 From: Joey L Date: Thu, 12 Feb 2026 00:16:08 +0000 Subject: [PATCH 3/3] Update unified workflow example to point to v2.3.3 reusable workflows --- .github/workflows/osv-scanner-unified-workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/osv-scanner-unified-workflow.yml b/.github/workflows/osv-scanner-unified-workflow.yml index f5d2bbd..2353954 100644 --- a/.github/workflows/osv-scanner-unified-workflow.yml +++ b/.github/workflows/osv-scanner-unified-workflow.yml @@ -35,7 +35,7 @@ permissions: jobs: scan-scheduled: if: ${{ github.event_name == 'push' || github.event_name == 'schedule' }} - uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@17ad728b580c3ea9fb48db7c0e93df5ad9edf9b3" # v2.3.2 + uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@8ae4be80636b94886b3c271caad730985ce0611c" # v2.3.3 with: # Example of specifying custom arguments scan-args: |- @@ -44,7 +44,7 @@ jobs: ./ scan-pr: if: ${{ github.event_name == 'pull_request' || github.event_name == 'merge_group' }} - uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@17ad728b580c3ea9fb48db7c0e93df5ad9edf9b3" # v2.3.2 + uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@8ae4be80636b94886b3c271caad730985ce0611c" # v2.3.3 with: # Example of specifying custom arguments scan-args: |-