Skip to content

Commit ec399ee

Browse files
authored
Merge pull request #1507 from Sofie-Automation/dependabot/github_actions/actions/checkout-5
chore(deps): bump actions/checkout from 4 to 5
2 parents f6089c7 + 50cfd7d commit ec399ee

File tree

9 files changed

+27
-25
lines changed

9 files changed

+27
-25
lines changed

.github/workflows/audit.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
continue-on-error: true
1212
timeout-minutes: 15
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
persist-credentials: false
1717
- name: Use Node.js
@@ -41,7 +41,7 @@ jobs:
4141
continue-on-error: true
4242
timeout-minutes: 15
4343
steps:
44-
- uses: actions/checkout@v4
44+
- uses: actions/checkout@v5
4545
with:
4646
persist-credentials: false
4747
- name: Use Node.js
@@ -84,7 +84,7 @@ jobs:
8484
- live-status-gateway
8585

8686
steps:
87-
- uses: actions/checkout@v4
87+
- uses: actions/checkout@v5
8888
with:
8989
persist-credentials: false
9090
- name: Use Node.js
@@ -117,7 +117,7 @@ jobs:
117117
timeout-minutes: 15
118118

119119
steps:
120-
- uses: actions/checkout@v4
120+
- uses: actions/checkout@v5
121121
with:
122122
persist-credentials: false
123123
- name: Use Node.js

.github/workflows/node.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
continue-on-error: true
1717
timeout-minutes: 15
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
persist-credentials: false
2222
- name: Use Node.js
@@ -57,7 +57,7 @@ jobs:
5757
runs-on: ubuntu-latest
5858
timeout-minutes: 30
5959
steps:
60-
- uses: actions/checkout@v4
60+
- uses: actions/checkout@v5
6161
with:
6262
persist-credentials: false
6363
- name: Use Node.js
@@ -104,7 +104,7 @@ jobs:
104104
runs-on: ubuntu-latest
105105
timeout-minutes: 30
106106
steps:
107-
- uses: actions/checkout@v4
107+
- uses: actions/checkout@v5
108108
with:
109109
persist-credentials: false
110110
- name: Determine if images should be published to DockerHub
@@ -284,7 +284,7 @@ jobs:
284284
gateway-name: [playout-gateway, mos-gateway, "live-status-gateway"]
285285

286286
steps:
287-
- uses: actions/checkout@v4
287+
- uses: actions/checkout@v5
288288
with:
289289
persist-credentials: false
290290
- name: Determine if images should be published to DockerHub
@@ -449,7 +449,7 @@ jobs:
449449
- live-status-gateway-api
450450

451451
steps:
452-
- uses: actions/checkout@v4
452+
- uses: actions/checkout@v5
453453
with:
454454
persist-credentials: false
455455
- name: Use Node.js
@@ -518,7 +518,7 @@ jobs:
518518
send-coverage: true
519519

520520
steps:
521-
- uses: actions/checkout@v4
521+
- uses: actions/checkout@v5
522522
with:
523523
persist-credentials: false
524524
- name: Use Node.js ${{ matrix.node-version }}
@@ -558,7 +558,7 @@ jobs:
558558
runs-on: ubuntu-latest
559559
timeout-minutes: 15
560560
steps:
561-
- uses: actions/checkout@v4
561+
- uses: actions/checkout@v5
562562
with:
563563
persist-credentials: false
564564
- name: Use Node.js
@@ -588,7 +588,7 @@ jobs:
588588
runs-on: ubuntu-latest
589589
timeout-minutes: 15
590590
steps:
591-
- uses: actions/checkout@v4
591+
- uses: actions/checkout@v5
592592
with:
593593
persist-credentials: false
594594
- name: Use Node.js
@@ -624,7 +624,7 @@ jobs:
624624
timeout-minutes: 15
625625

626626
steps:
627-
- uses: actions/checkout@v4
627+
- uses: actions/checkout@v5
628628
with:
629629
persist-credentials: false
630630
- name: Use Node.js
@@ -681,7 +681,7 @@ jobs:
681681
- build-core
682682

683683
steps:
684-
- uses: actions/checkout@v4
684+
- uses: actions/checkout@v5
685685
with:
686686
persist-credentials: false
687687
- name: Use Node.js
@@ -758,7 +758,7 @@ jobs:
758758
continue-on-error: true
759759
timeout-minutes: 15
760760
steps:
761-
- uses: actions/checkout@v4
761+
- uses: actions/checkout@v5
762762
with:
763763
persist-credentials: false
764764
- name: Use Node.js

.github/workflows/prerelease-libs.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- live-status-gateway-api
2222

2323
steps:
24-
- uses: actions/checkout@v4
24+
- uses: actions/checkout@v5
2525
with:
2626
persist-credentials: false
2727
- name: Use Node.js
@@ -61,7 +61,7 @@ jobs:
6161
node-version: [22.x]
6262

6363
steps:
64-
- uses: actions/checkout@v4
64+
- uses: actions/checkout@v5
6565
with:
6666
persist-credentials: false
6767
- name: Use Node.js ${{ matrix.node-version }}
@@ -93,7 +93,7 @@ jobs:
9393
- test-packages
9494

9595
steps:
96-
- uses: actions/checkout@v4
96+
- uses: actions/checkout@v5
9797
with:
9898
persist-credentials: false
9999
- name: Use Node.js

.github/workflows/prune-tags.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
timeout-minutes: 15
2424
steps:
2525
- name: Checkout repo with all tags
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@v5
2727
with:
2828
fetch-depth: 0
2929

.github/workflows/sonar.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
timeout-minutes: 15
1717

1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v5
2020
with:
2121
# Disabling shallow clone is recommended for improving relevancy of reporting
2222
fetch-depth: 0

packages/webui/src/client/styles/prompter.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -291,13 +291,13 @@ body.prompter-scrollbar {
291291
&.heavy-light {
292292
font-weight: 600;
293293

294-
&.heavy {
294+
&.light {
295295
// color: $general-late-color;
296296
background-color: #ffe900;
297297
color: #000;
298298
}
299299

300-
&.light {
300+
&.heavy {
301301
background-color: $general-fast-color;
302302
color: #fff;
303303
text-shadow:

packages/webui/src/client/ui/AfterBroadcastForm.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const DEFAULT_STATE = {
3030

3131
export function AfterBroadcastForm({ playlist }: Readonly<{ playlist: DBRundownPlaylist }>): JSX.Element {
3232
const { t } = useTranslation()
33-
const shouldDeactivateRundown = isLoopRunning(playlist)
33+
const shouldDeactivateRundown = !isLoopRunning(playlist)
3434
const [problems, setProblems] = useState<ProblemType>(DEFAULT_STATE.problems)
3535
const [description, setDescription] = useState<string[]>(DEFAULT_STATE.description.slice())
3636
const [userName, setUserName] = useState<string>(DEFAULT_STATE.userName)

packages/webui/src/client/ui/ClockView/PresenterScreen.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,9 @@ export function usePresenterScreenSubscriptions(props: PresenterScreenProps): vo
392392

393393
useSubscription(CorelibPubSub.segments, rundownIds, {})
394394
useSubscription(CorelibPubSub.parts, rundownIds, null)
395+
useSubscription(MeteorPubSub.uiParts, playlist?._id ?? null)
395396
useSubscription(MeteorPubSub.uiPartInstances, playlist?.activationId ?? null)
397+
useSubscription(CorelibPubSub.pieces, rundownIds, null)
396398
useSubscriptions(
397399
MeteorPubSub.uiShowStyleBase,
398400
showStyleBaseIds.map((id) => [id])

packages/webui/src/client/ui/Prompter/OverUnderTimer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ export function OverUnderTimer({ rundownPlaylist, style }: IProps): JSX.Element
2222
<span
2323
style={style}
2424
className={ClassNames('prompter-timing-clock heavy-light', {
25-
heavy: Math.floor(overUnderClock / 1000) < 0,
26-
light: Math.floor(overUnderClock / 1000) >= 0,
25+
light: Math.floor(overUnderClock / 1000) < 0,
26+
heavy: Math.floor(overUnderClock / 1000) >= 0,
2727
})}
2828
>
2929
{RundownUtils.formatDiffToTimecode(overUnderClock, true, false, true, true, true, undefined, true, true)}

0 commit comments

Comments
 (0)