Skip to content

Bump google/osv-scanner-action from 2.2.2 to 2.2.3 in the all group #219

Bump google/osv-scanner-action from 2.2.2 to 2.2.3 in the all group

Bump google/osv-scanner-action from 2.2.2 to 2.2.3 in the all group #219

Workflow file for this run

# Copyright 2023 The OpenVEX Authors
# SPDX-License-Identifier: Apache-2.0
---
name: Boilerplate
on:
pull_request:
branches:
- 'main'
- 'release-*'
jobs:
check:
name: Boilerplate Check
runs-on: ubuntu-latest
strategy:
fail-fast: false # Keep running if one leg fails.
matrix:
extension:
- go
- sh
- yaml
# Map between extension and human-readable name.
include:
- extension: go
language: Go
- extension: sh
language: Bash
- extension: yaml
language: YAML
- extension: yml
language: YAML
steps:
- name: Check out code
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
with:
persist-credentials: false
- uses: chainguard-dev/actions/boilerplate@main
with:
extension: ${{ matrix.extension }}
language: ${{ matrix.language }}