Skip to content

Commit

Permalink
Merge branch 'master' into no-pii
Browse files Browse the repository at this point in the history
  • Loading branch information
imnasnainaec authored Jan 17, 2025
2 parents 5a81d66 + 0b4e971 commit b50af39
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 15 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,13 @@ jobs:
builds.dotnet.microsoft.com:443
dc.services.visualstudio.com:443
deb.debian.org:80
dotnetbuilds.azureedge.net:443
dotnetcli.azureedge.net:443
github.com:443
md-hdd-t032zjxllntc.z26.blob.storage.azure.net:443
objects.githubusercontent.com:443
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Setup dotnet
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4.2.0
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Install ffmpeg
Expand Down Expand Up @@ -113,15 +111,14 @@ jobs:
api.nuget.org:443
builds.dotnet.microsoft.com:443
dc.services.visualstudio.com:443
dotnetcli.azureedge.net:443
github.com:443
objects.githubusercontent.com:443
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
# Manually install .NET to work around:
# https://github.com/github/codeql-action/issues/757
- name: Setup .NET
uses: actions/setup-dotnet@6bd8b7f7774af54e05809fcc5431931b3eb1ddee # v4.0.1
uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4.2.0
with:
dotnet-version: "8.0.x"
- name: Initialize CodeQL
Expand Down
3 changes: 0 additions & 3 deletions .github/workflows/deploy_qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,9 @@ jobs:
api.nuget.org:443
archive.ubuntu.com:80
auth.docker.io:443
codecov.io:443
dc.services.visualstudio.com:443
deb.debian.org:80
docker.io:443
dotnetcli.azureedge.net:443
files.pythonhosted.org:443
github.com:443
mcr.microsoft.com:443
Expand All @@ -51,7 +49,6 @@ jobs:
security.ubuntu.com:80
storage.googleapis.com:443
sts.${{ secrets.AWS_DEFAULT_REGION }}.amazonaws.com:443
uploader.codecov.io:443
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
fetch-depth: 0
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/deploy_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,14 @@ jobs:
*.actions.githubusercontent.com:443
*.cloudfront.net:443
*.data.mcr.microsoft.com:443
api.ecr-public.us-east-1.amazonaws.com:443
api.ecr-public.${{ secrets.AWS_DEFAULT_REGION }}.amazonaws.com:443
api.github.com:443
api.nuget.org:443
archive.ubuntu.com:80
auth.docker.io:443
dc.services.visualstudio.com:443
deb.debian.org:80
docker.io:443
dotnetcli.azureedge.net:443
files.pythonhosted.org:443
github.com:443
mcr.microsoft.com:443
Expand All @@ -47,7 +46,7 @@ jobs:
security.debian.org:80
security.ubuntu.com:80
storage.googleapis.com:443
sts.us-east-1.amazonaws.com:443
sts.${{ secrets.AWS_DEFAULT_REGION }}.amazonaws.com:443
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Build The Combine
id: build_combine
Expand Down
4 changes: 0 additions & 4 deletions src/types/goals.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { v4 } from "uuid";

import { type User } from "api/models";
import {
type CharInvChanges,
type CharInvData,
Expand All @@ -12,7 +11,6 @@ import {
type MergesCompleted,
} from "goals/MergeDuplicates/MergeDupsTypes";
import { type EntriesEdited } from "goals/ReviewEntries/ReviewEntriesTypes";
import { newUser } from "types/user";

export type GoalData = CharInvData | MergeDupsData;
// Record<string, never> is the recommended type for an empty object.
Expand Down Expand Up @@ -61,7 +59,6 @@ export class Goal {
guid: string;
goalType: GoalType;
name: GoalName;
user: User;
steps: GoalStep[];
numSteps: number;
currentStep: number;
Expand All @@ -78,7 +75,6 @@ export class Goal {
this.guid = v4();
this.goalType = type;
this.name = name;
this.user = newUser();
this.steps = steps;
this.numSteps = 1;
this.currentStep = 0;
Expand Down

0 comments on commit b50af39

Please sign in to comment.