We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108d8b8 commit f70929cCopy full SHA for f70929c
.github/workflows/internal-ci.yml
@@ -27,6 +27,11 @@ jobs:
27
with:
28
fetch-depth: 0 # get full history, not shallow clone
29
30
+ - name: Check for workflows with outdated action pins
31
+ if: startsWith(github.ref, 'refs/tags')
32
+ run: |
33
+ ! grep -P -i 'uses: KSPModdingLibs/KSPBuildTools/\.github/actions/.*@(?!${{ github.ref_name }}$)' .github/workflows/*.yml
34
+
35
- name: Setup .NET
36
uses: actions/setup-dotnet@v4
37
@@ -39,10 +44,6 @@ jobs:
39
44
minver
40
45
echo "version=$(minver -v e)" >> "$GITHUB_OUTPUT"
41
46
42
- - name: Check Workflow Pinning
43
- run: |
- ! grep -P -i 'uses: KSPModdingLibs/KSPBuildTools/\.github/actions/.*@(?!${{github.ref_name}}$)' .github/workflows/*.yml
-
47
- name: Build
48
run: dotnet build KSPBuildTools.csproj
49
0 commit comments