Updated docker image to .NET 6 #10 (#11)

Added self-tests to action.
This commit is contained in:
Bernie White 2022-10-20 02:20:48 +10:00 коммит произвёл GitHub
Родитель ad580575f2
Коммит 548f7935ab
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 38 добавлений и 1 удалений

37
.github/workflows/build.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,37 @@
#
# Test build action
#
name: Build and test
on:
push:
branches: [ 'main' ]
pull_request:
branches: [ 'main' ]
workflow_dispatch:
jobs:
# Check that container image can be built
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v3
- name: Build action image
run: docker build . --file Dockerfile --tag DevSkim-Action:${{ github.sha }}
# Can the action run successful against the repo
- name: Self test action
uses: ./
# Make sure results exist and can by uploaded
- name: Upload results
uses: github/codeql-action/upload-sarif@v1
with:
sarif_file: devskim-results.sarif

Просмотреть файл

@ -1,4 +1,4 @@
FROM mcr.microsoft.com/dotnet/sdk:5.0
FROM mcr.microsoft.com/dotnet/sdk:6.0
RUN mkdir /tools