Skip to content

Commit c60d520

Browse files
authored
Merge branch 'develop' into jellyseerr-to-seerr
2 parents 7cd67f8 + 08800c7 commit c60d520

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/helm.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
uses: oras-project/setup-oras@22ce207df3b08e061f537244349aac6ae1d214f6 # v1.2.4
106106

107107
- name: Install Cosign
108-
uses: sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
108+
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
109109

110110
- name: Downloads artifacts
111111
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
@@ -157,7 +157,7 @@ jobs:
157157
persist-credentials: false
158158

159159
- name: Install Cosign
160-
uses: sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
160+
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
161161

162162
- name: Downloads artifacts
163163
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ jobs:
206206
persist-credentials: false
207207

208208
- name: Install Cosign
209-
uses: sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
209+
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
210210

211211
- name: Install Trivy
212212
uses: aquasecurity/setup-trivy@e6c2c5e321ed9123bda567646e2f96565e34abe1 # v0.2.4
@@ -267,7 +267,7 @@ jobs:
267267
VERSION: ${{ github.ref_name }}
268268
steps:
269269
- name: Install Cosign
270-
uses: sigstore/cosign-installer@d7543c93d881b35a8faa02e8e3605f69b7a1ce62 # v3.10.0
270+
uses: sigstore/cosign-installer@faadad0cce49287aee09b3a48701e75088a2c6ad # v4.0.0
271271

272272
- name: Verify signatures
273273
run: |

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ WORKDIR /app
1313
FROM base AS prod-deps
1414
RUN --mount=type=cache,id=pnpm,target=/pnpm/store CI=true pnpm install --prod --frozen-lockfile
1515

16-
FROM base as build
16+
FROM base AS build
17+
18+
ARG COMMIT_TAG
19+
ENV COMMIT_TAG=${COMMIT_TAG}
1720

1821
RUN \
1922
case "${TARGETPLATFORM}" in \

src/components/PersonDetails/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,6 +292,7 @@ const PersonDetails = () => {
292292
</div>
293293
)}
294294
</div>
295+
<div className="lg:hidden">{mediaTypePicker}</div>
295296
{data.biography && (
296297
<div className="relative text-left">
297298
{/* eslint-disable-next-line jsx-a11y/click-events-have-key-events */}
@@ -314,7 +315,6 @@ const PersonDetails = () => {
314315
)}
315316
</div>
316317
</div>
317-
<div className="lg:hidden">{mediaTypePicker}</div>
318318
{data.knownForDepartment === 'Acting' ? [cast, crew] : [crew, cast]}
319319
{isLoading && <LoadingSpinner />}
320320
</>

0 commit comments

Comments
 (0)