Skip to content

Commit f3897d1

Browse files
authored
Merge pull request #91 from jcdcdev/dev/v15
15.0.3
2 parents 8e23b14 + 3a680df commit f3897d1

File tree

5 files changed

+349
-33
lines changed

5 files changed

+349
-33
lines changed

.github/README.md

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,34 +11,11 @@ Simple [ASP.NET Core Data Protection](https://learn.microsoft.com/en-us/aspnet/c
1111

1212
Data protection keys are stored in the Umbraco database.
1313

14-
> [!IMPORTANT]
15-
> Version 15 will only receive security updates and no new features.
14+
> [!WARNING]
15+
> Version 15 is no longer supported and is End of Life (EOL).
1616
1717
> Please review the [security policy](https://github.com/jcdcdev/Umbraco.Community.DataProtection?tab=security-ov-file#supported-versions) for more information.
1818
19-
## Quick Start
20-
21-
```csharp
22-
dotnet add package Umbraco.Community.DataProtection
23-
```
24-
25-
```csharp title="Composer.cs"
26-
using Umbraco.Cms.Core.Composing;
27-
using Umbraco.Cms.Core.DependencyInjection;
28-
29-
namespace Project.Web;
30-
31-
public class Composer : IComposer
32-
{
33-
public void Compose(IUmbracoBuilder builder)
34-
{
35-
builder.AddUmbracoDataProtection();
36-
}
37-
}
38-
```
39-
40-
41-
4219
## Contributing
4320

4421
Contributions to this package are most welcome! Please visit the [Contributing](https://github.com/jcdcdev/Umbraco.Community.DataProtection/contribute) page.

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- name: Build
10-
uses: jcdcdev/jcdcdev.Umbraco.Github.Build@main
10+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@v0
1111
with:
1212
project-name: Umbraco.Community.DataProtection
1313
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
1414
umbraco-version: 15
15-
dotnet-version: "9"
15+
dotnet-version: "9"

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: 🚀 Release
22
on:
33
workflow_dispatch:
44
pull_request:
5-
types: [ closed ]
5+
types: [closed]
66
jobs:
77
release:
88
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch'
@@ -13,16 +13,16 @@ jobs:
1313
steps:
1414
- name: Build
1515
id: build
16-
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@main
16+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Build@v0
1717
with:
1818
project-name: Umbraco.Community.DataProtection
1919
project-path: src/Umbraco.Community.DataProtection/Umbraco.Community.DataProtection.csproj
2020
umbraco-version: 15
2121
dotnet-version: "9"
2222
- name: Release
23-
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@main
23+
uses: jcdcdev/jcdcdev.Umbraco.GitHub.Release@v0
2424
with:
2525
artifact-name: ${{ steps.build.outputs.artifact-name }}
2626
version: ${{ steps.build.outputs.version }}
2727
nuget-api-key: ${{ secrets.NUGET_API_KEY }}
28-
github-token: ${{ secrets.GITHUB_TOKEN }}
28+
github-token: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)