Skip to content

Bump sigstore/cosign-installer from 9becc617647dfa20ae7b1151972e9b3a2c338a2b to b235ed95bef2a3cf9f8641bc537bc22c7cb9a3a8 #415

Bump sigstore/cosign-installer from 9becc617647dfa20ae7b1151972e9b3a2c338a2b to b235ed95bef2a3cf9f8641bc537bc22c7cb9a3a8

Bump sigstore/cosign-installer from 9becc617647dfa20ae7b1151972e9b3a2c338a2b to b235ed95bef2a3cf9f8641bc537bc22c7cb9a3a8 #415

Workflow file for this run

name: CI Build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
env:
DOTNET_NOLOGO: true # Disable the .NET logo in the console output
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Disable the .NET first time experience to skip caching NuGet packages and speed up the build
DOTNET_CLI_TELEMETRY_OPTOUT: true # Disable sending .NET CLI telemetry to Microsoft
jobs:
build:
name: CI Build
runs-on: ubuntu-latest
steps:
- name: Harden Runner
uses: step-security/harden-runner@ebacdc22ef6c2cfb85ee5ded8f2e640f4c776dd5
with:
egress-policy: block
allowed-endpoints: >
api.nuget.org:443
dotnetbuilds.azureedge.net:443
dotnetcli.azureedge.net:443
dotnetcli.blob.core.windows.net:443
github.com:443
- name: Checkout
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
- name: Setup .Net
uses: actions/setup-dotnet@607fce577a46308457984d59e4954e075820f10a
with:
dotnet-version: 6.0.x
- name: Restore Dependencies
run: dotnet restore src/EditRelease.sln
- name: Build EditRelease
run: dotnet build src/EditRelease.sln --configuration Release --no-restore