Skip to content

Commit 8eb3ef6

Browse files
Merge branch 'v9/dev' into v9/contrib
2 parents 8cd0e5a + a8e0690 commit 8eb3ef6

File tree

284 files changed

+5829
-3979
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+5829
-3979
lines changed

.github/config/codeql-config.yml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
name: "CodeQL config"
2-
on:
3-
push:
4-
branches: [v8/contrib,v8/dev]
5-
paths-ignore:
6-
- node_modules
7-
- Umbraco.TestData
8-
- Umbraco.Tests
9-
- Umbraco.Tests.AcceptanceTest
10-
- Umbraco.Tests.Benchmarks
11-
- bin
12-
- build.tmp
2+
133
paths:
14-
- src
4+
- src
5+
6+
paths-ignore:
7+
- '**/node_modules'
8+
- 'src/Umbraco.Web.UI/wwwroot'

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -2,67 +2,28 @@ name: "Code scanning - action"
22

33
on:
44
push:
5-
branches: [v8/contrib,v8/dev,v8/bug,v8/feature]
5+
branches: ['*/dev','*/contrib']
66
pull_request:
77
# The branches below must be a subset of the branches above
8-
schedule:
9-
- cron: '0 7 * * 2'
8+
branches: ['*/dev','*/contrib']
109

1110
jobs:
1211
CodeQL-Build:
1312

14-
runs-on: windows-latest
13+
runs-on: ubuntu-latest
1514

1615
steps:
1716
- name: Checkout repository
1817
uses: actions/checkout@v2
19-
with:
20-
# We must fetch at least the immediate parents so that if this is
21-
# a pull request then we can checkout the head.
22-
fetch-depth: 2
23-
24-
# If this run was triggered by a pull request event, then checkout
25-
# the head of the pull request instead of the merge commit.
26-
- run: git checkout HEAD^2
27-
if: ${{ github.event_name == 'pull_request' }}
2818

2919
# Initializes the CodeQL tools for scanning.
3020
- name: Initialize CodeQL
3121
uses: github/codeql-action/init@v1
32-
# Override language selection by uncommenting this and choosing your languages
33-
# with:
34-
# languages: go, javascript, csharp, python, cpp, java
35-
36-
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
37-
# If this step fails, then you should remove it and run the build manually (see below)
38-
39-
# ℹ️ Command-line programs to run using the OS shell.
40-
# 📚 https://git.io/JvXDl
41-
42-
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
43-
# and modify them (or add more) to build your code if your project
44-
# uses a compiled language
45-
46-
- name: configure Pagefile
47-
uses: al-cheb/[email protected]
4822
with:
49-
minimum-size: 8GB
50-
maximum-size: 32GB
51-
52-
- run: |
53-
echo "Run Umbraco-CMS build"
54-
pwsh -command .\build\build.ps1
23+
config-file: ./.github/config/codeql-config.yml
24+
25+
- name: dotnet build
26+
run: dotnet build umbraco-netcore-only.sln
5527

5628
- name: Perform CodeQL Analysis
5729
uses: github/codeql-action/analyze@v1
58-
with:
59-
config-file: ./.github/config/codeql-config.yml
60-
61-
# This job is to prevent the workflow status from showing as failed when all other jobs are skipped - See https://github.community/t/workflow-is-failing-if-no-job-can-be-ran-due-to-condition/16873
62-
always_job:
63-
name: Always run job
64-
runs-on: ubuntu-latest
65-
steps:
66-
- name: Always run
67-
run: echo "This job is to prevent the workflow status from showing as failed when all other jobs are skipped"
68-

build/templates/UmbracoPackage/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"version": {
2525
"type": "parameter",
2626
"datatype": "string",
27-
"defaultValue": "9.2.0-rc",
27+
"defaultValue": "9.3.0-rc",
2828
"description": "The version of Umbraco to load using NuGet",
2929
"replaces": "UMBRACO_VERSION_FROM_TEMPLATE"
3030
},

build/templates/UmbracoProject/.template.config/template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"version": {
5858
"type": "parameter",
5959
"datatype": "string",
60-
"defaultValue": "9.2.0-rc",
60+
"defaultValue": "9.3.0-rc",
6161
"description": "The version of Umbraco to load using NuGet",
6262
"replaces": "UMBRACO_VERSION_FROM_TEMPLATE"
6363
},
File renamed without changes.

0 commit comments

Comments
 (0)