Skip to content

build(deps): bump golang.org/x/sys from 0.38.0 to 0.39.0 #135

build(deps): bump golang.org/x/sys from 0.38.0 to 0.39.0

build(deps): bump golang.org/x/sys from 0.38.0 to 0.39.0 #135

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# umoci: Umoci Modifies Open Containers' Images
# Copyright (C) 2016-2025 SUSE LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: ClusterFuzzLite
on:
pull_request:
branches: [ main ]
permissions: read-all
jobs:
pr:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
sanitizer:
- address
#- undefined # currently ubsan has build failures
- memory
steps:
- name: build fuzzers (${{ matrix.sanitizer }})
id: build
uses: google/clusterfuzzlite/actions/build_fuzzers@v1
with:
language: go
github-token: ${{ secrets.GITHUB_TOKEN }}
sanitizer: ${{ matrix.sanitizer }}
storage-repo: https://github.com/cyphar/umoci-fuzz-corpus.git
# FIXME: Workarounds for <https://github.com/google/clusterfuzzlite/pull/144>.
storage-repo-branch: main
storage-repo-branch-coverage: gh-pages
- name: run fuzzers (${{ matrix.sanitizer }})
id: run
uses: google/clusterfuzzlite/actions/run_fuzzers@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fuzz-seconds: 300
mode: 'code-change'
sanitizer: ${{ matrix.sanitizer }}
output-sarif: true
storage-repo: https://github.com/cyphar/umoci-fuzz-corpus.git