Skip to content

Commit

Permalink
Merge branch 'master' into allow-public-access-to-system-files
Browse files Browse the repository at this point in the history
  • Loading branch information
Saibamen committed Apr 26, 2024
2 parents bf92e33 + 929c99b commit af84eb5
Show file tree
Hide file tree
Showing 16 changed files with 788 additions and 2,991 deletions.
8 changes: 4 additions & 4 deletions .Tests/XUnit.Tests/XUnit.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.4.1" />
<PackageReference Include="xunit" Version="2.4.2" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.5">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.7.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.8">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.collector" Version="3.2.0">
<PackageReference Include="coverlet.collector" Version="6.0.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/conflicts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: check if PRs are dirty
uses: eps1lon/actions-label-merge-conflict@releases/2.x
uses: eps1lon/actions-label-merge-conflict@v3
with:
dirtyLabel: "Conflicts"
repoToken: "${{ secrets.GITHUB_TOKEN }}"
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/docker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name: Build Server Docker Image
on:
pull_request:
paths-ignore:
- '*.md'
- 'OldReferenceCode/**'
- 'XMPP-ejabberd/**'
- 'OldReferenceCode/**'
- 'Files/Engine.ini'
- 'UT4MasterServer.Web/**'
- "*.md"
- "OldReferenceCode/**"
- "XMPP-ejabberd/**"
- "OldReferenceCode/**"
- "Files/Engine.ini"
- "UT4MasterServer.Web/**"
push:
paths-ignore:
- '*.md'
- 'OldReferenceCode/**'
- 'XMPP-ejabberd/**'
- 'OldReferenceCode/**'
- 'Files/Engine.ini'
- 'UT4MasterServer.Web/**'
- "*.md"
- "OldReferenceCode/**"
- "XMPP-ejabberd/**"
- "OldReferenceCode/**"
- "Files/Engine.ini"
- "UT4MasterServer.Web/**"

env:
IMAGE_NAME: ut4masterserver
Expand All @@ -25,7 +25,7 @@ jobs:
build-server:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Docker Image
run: docker build --pull -t ${{ env.IMAGE_NAME }} -f ./UT4MasterServer/Dockerfile .
- name: Clean Up
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/docker_build_frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@ name: Build Frontend Docker Image
on:
pull_request:
paths:
- 'UT4MasterServer.Web/**'
- '.github/workflows/docker_build_frontend.yml'
- "UT4MasterServer.Web/**"
- ".github/workflows/docker_build_frontend.yml"
# ignored paths
- '!*.md'
- "!*.md"
push:
paths:
- 'UT4MasterServer.Web/**'
- '.github/workflows/docker_build_frontend.yml'
- "UT4MasterServer.Web/**"
- ".github/workflows/docker_build_frontend.yml"
# ignored paths
- '!*.md'
- "!*.md"

env:
IMAGE_NAME: ut4masterserver-web
Expand All @@ -21,7 +21,7 @@ jobs:
build-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build Frontend Docker Image
run: docker build --pull -t ${{ env.IMAGE_NAME }} -f ./UT4MasterServer.Web/.docker/Development.Dockerfile ./UT4MasterServer.Web/
- name: Clean Up
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
linters:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: lts/*
- run: npm install --ignore-scripts
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="6.0.13" />
<PackageReference Include="Microsoft.AspNetCore.Authorization" Version="6.0.29" />
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.29" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion UT4MasterServer.Common/UT4MasterServer.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="MongoDB.Driver" Version="2.19.0" />
<PackageReference Include="MongoDB.Driver" Version="2.25.0" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions UT4MasterServer.Services/UT4MasterServer.Services.csproj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
Expand All @@ -7,8 +7,8 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit af84eb5

Please sign in to comment.