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
16 changes: 8 additions & 8 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,27 +59,27 @@ jobs:
# your codebase is analyzed, see https://docs.github.com/en/code-security/code-scanning/creating-an-advanced-setup-for-code-scanning/codeql-code-scanning-for-compiled-languages
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

# Add any setup steps before running the `github/codeql-action/init` action.
# This includes steps like installing compilers or runtimes (`actions/setup-node`
# or others). This is typically only required for manual builds.
# - name: Setup runtime (example)
# uses: actions/setup-example@v1
- name: dotnet 9
uses: actions/setup-dotnet@v4
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x
- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: './src/Umbraco.Community.CSPManager/Client/package.json'
cache: 'npm'
cache-dependency-path: './src/Umbraco.Community.CSPManager/Client/package-lock.json'

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
Expand All @@ -105,10 +105,10 @@ jobs:
working-directory: './src/Umbraco.Community.CSPManager/Client'

- if: matrix.build-mode == 'manual'
run: dotnet build Umbraco.Community.CSPManager.sln -c Release
run: dotnet build Umbraco.Community.CSPManager.slnx -c Release
working-directory: ./src/

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Setup .NET
uses: actions/setup-dotnet@v4
uses: actions/setup-dotnet@v5
with:
dotnet-version: 9.0.x
dotnet-version: 10.0.x

- name: Setup Node
uses: actions/setup-node@v4
uses: actions/setup-node@v6
with:
node-version-file: '${{env.ClientPROJECT}}/package.json'
cache: 'npm'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
report:
runs-on: ubuntu-latest
steps:
- uses: dorny/test-reporter@v1
- uses: dorny/test-reporter@v2
with:
artifact: test-results # artifact name
name: .NET Tests # Name of the check run which will be created
Expand Down
47 changes: 1 addition & 46 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -364,49 +364,4 @@ src/**/App_Plugins/UmbracoCommunityCSPManager/

**/*.received.txt

# Generated by rulesync - AI tool configuration files
**/.amazonq/rules/
**/.amazonq/mcp.json
**/.github/copilot-instructions.md
**/.github/instructions/
**/.cursor/rules/
**/.cursorignore
**/.clinerules/
**/.clineignore
**/CLAUDE.md
**/.claude/memories/
**/.claude/commands/
**/.claude/agents/
**/AGENTS.md
**/.agents/
**/.codexignore
**/.roo/rules/
**/.rooignore
**/.copilotignore
**/GEMINI.md
**/.gemini/memories/
**/.gemini/commands/
**/QWEN.md
**/.qwen/memories/
**/.aiexclude
**/.aiignore
**/.augmentignore
**/.kiro/steering/
**/.augment/rules/
**/.augment-guidelines
**/.junie/guidelines.md
**/.noai
**/.opencode/memories/
**/.opencode/commands/
**/opencode.json
**/.mcp.json
!.rulesync/.mcp.json
**/.cursor/mcp.json
**/.cline/mcp.json
**/.vscode/mcp.json
**/.codex/mcp-config.json
**/.gemini/settings.json
**/.qwen/settings.json
**/.roo/mcp.json
.copilot/mcp.json
.claude/settings.local.json
/src/.claude/settings.local.json
15 changes: 15 additions & 0 deletions .mcp.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"mcpServers": {
"playwright": {
"command": "cmd",
"args": [
"/c",
"npx",
"@playwright/mcp@latest"
],
"env": {
"ALLOWED_ORIGINS": "https://localhost:44370"
}
}
}
}
12 changes: 0 additions & 12 deletions .rulesync/.mcp.json

This file was deleted.

215 changes: 0 additions & 215 deletions .rulesync/commands/component.md

This file was deleted.

Loading