Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/auto-pr-from-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
git checkout -b $BRANCH_NAME

# List outdated packages
dotnet list package --outdated
dotnet list MetarDecoder.sln package --outdated

# Update packages (this is a simplified approach)
echo "📦 Updating NuGet packages..."
Expand Down Expand Up @@ -154,10 +154,10 @@ jobs:
echo "🔒 Checking for security-related package updates..."

# Check for vulnerable packages
dotnet list package --vulnerable
dotnet list MetarDecoder.sln package --vulnerable

# Create update branch if vulnerabilities found
if dotnet list package --vulnerable | grep -q "vulnerable"; then
if dotnet list MetarDecoder.sln package --vulnerable | grep -q "vulnerable"; then
echo "🚨 Security vulnerabilities detected, creating update PR..."

BRANCH_NAME="security-update-$(date +%Y%m%d-%H%M%S)"
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/code-quality.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ jobs:
args: --linter,qodana-community-for-net --baseline,qodana.sarif.json --fail-threshold,0
cache-default-branch-only: true
upload-result: false
primary-cache-key: qodana-2025.3-refs/heads/main-${{ github.sha }}
additional-cache-key: qodana-2025.3-refs/heads/main

- name: 📊 Upload Qodana Results
uses: actions/upload-artifact@v4
Expand Down
Loading
Loading