chore: bump google.golang.org/grpc from 1.63.2 to 1.63.3 #1917
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright 2022 The Witness Contributors | |
# | |
# 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: release | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
fmt: | |
uses: ./.github/workflows/witness.yml | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read | |
with: | |
pull_request: ${{ github.event_name == 'pull_request' }} | |
step: fmt | |
attestations: "git github environment" | |
command: go fmt ./... | |
sast: | |
needs: [fmt] | |
uses: ./.github/workflows/witness.yml | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read | |
with: | |
pull_request: ${{ github.event_name == 'pull_request' }} | |
step: sast | |
attestations: "git github environment" | |
command: go vet ./... | |
unit-test: | |
needs: [fmt] | |
uses: ./.github/workflows/witness.yml | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read | |
with: | |
pull_request: ${{ github.event_name == 'pull_request' }} | |
step: unit-test | |
attestations: "git github environment" | |
command: go test -v -coverprofile=profile.cov -covermode=atomic ./... | |
artifact-upload-name: profile.cov | |
artifact-upload-path: profile.cov | |
release: | |
needs: [fmt, sast, unit-test] | |
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/') | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write # This is required for the action to work correctly | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Release | |
uses: softprops/action-gh-release@a74c6b72af54cfa997e81df42d94703d6313a2d0 # v2.0.6 |