Skip to content

Commit 0845cc4

Browse files
Merge branch 'main' into dev
* main: (28 commits) ci: use hashes for actions everywhere (#17803) website/integrations: fixed paperless-ngx yml syntax issue and added additional info (#17739) core, web: update translations (#17782) ci: rework internal repo (#17797) root: use hashes for dockerfile FROM (#17795) web: bump validator from 13.15.15 to 13.15.20 in /packages/prettier-config (#17776) tasks: delay startup signals (#17769) website: bump the build group in /website with 6 updates (#17712) core, web: update translations (#17660) web: bump vite from 7.1.11 to 7.1.12 in /web (#17689) website: bump validator from 13.15.15 to 13.15.20 in /website (#17741) web: bump eslint-plugin-react-hooks from 7.0.0 to 7.0.1 in /packages/eslint-config in the eslint group across 1 directory (#17714) web: bump validator from 13.15.15 to 13.15.20 in /packages/eslint-config (#17742) packages/django-postgres-cache: use upsert instead of select/update in a transaction (#17760) providers/radius: fix panic when no cert is configured (#17762) sources/oauth: Make PKCE verifier 128 characters (#17763) providers/proxy: fix missing JWT/claims header (#17759) providers/proxy: add gorm logging (#17758) web: bump the sentry group across 1 directory with 2 updates (#17743) root: Add Dockerfile label org.opencontainers.image.source (#17756) ...
2 parents 91bbf0e + c4af2ee commit 0845cc4

File tree

104 files changed

+2442
-1166
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+2442
-1166
lines changed

.github/dependabot.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,9 @@ updates:
142142
labels:
143143
- dependencies
144144
- package-ecosystem: docker
145-
directory: "/"
145+
directories:
146+
- /
147+
- /website
146148
schedule:
147149
interval: daily
148150
time: "04:00"

.github/workflows/api-ts-publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ permissions:
1515

1616
jobs:
1717
build:
18-
if: ${{ github.repository != 'goauthentik/authentik-internal' }}
1918
runs-on: ubuntu-latest
2019
steps:
2120
- id: generate_token

.github/workflows/ci-aws-cfn.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,6 @@ jobs:
4242
- check-changes-applied
4343
runs-on: ubuntu-latest
4444
steps:
45-
- uses: re-actors/alls-green@release/v1
45+
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
4646
with:
4747
jobs: ${{ toJSON(needs) }}

.github/workflows/ci-docs-source.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ env:
1313

1414
jobs:
1515
publish-source-docs:
16-
if: ${{ github.repository != 'goauthentik/authentik-internal' }}
1716
runs-on: ubuntu-latest
1817
timeout-minutes: 120
1918
steps:

.github/workflows/ci-docs.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,6 @@ jobs:
6161
working-directory: website/
6262
run: npm run build -w integrations
6363
build-container:
64-
if: ${{ github.repository != 'goauthentik/authentik-internal' }}
6564
runs-on: ubuntu-latest
6665
permissions:
6766
# Needed to upload container images to ghcr.io
@@ -118,7 +117,6 @@ jobs:
118117
- build-container
119118
runs-on: ubuntu-latest
120119
steps:
121-
- uses: re-actors/alls-green@release/v1
120+
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
122121
with:
123122
jobs: ${{ toJSON(needs) }}
124-
allowed-skips: ${{ github.repository == 'goauthentik/authentik-internal' && 'build-container' || '[]' }}

.github/workflows/ci-main-daily.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ on:
99

1010
jobs:
1111
test-container:
12-
if: ${{ github.repository != 'goauthentik/authentik-internal' }}
1312
runs-on: ubuntu-latest
1413
strategy:
1514
fail-fast: false

.github/workflows/ci-main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ jobs:
225225
- test-e2e
226226
runs-on: ubuntu-latest
227227
steps:
228-
- uses: re-actors/alls-green@release/v1
228+
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
229229
with:
230230
jobs: ${{ toJSON(needs) }}
231231
build:

.github/workflows/ci-outpost.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,10 @@ jobs:
6363
- test-unittest
6464
runs-on: ubuntu-latest
6565
steps:
66-
- uses: re-actors/alls-green@release/v1
66+
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
6767
with:
6868
jobs: ${{ toJSON(needs) }}
6969
build-container:
70-
if: ${{ github.repository != 'goauthentik/authentik-internal' }}
7170
timeout-minutes: 120
7271
needs:
7372
- ci-outpost-mark

.github/workflows/ci-web.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
- lint
6969
runs-on: ubuntu-latest
7070
steps:
71-
- uses: re-actors/alls-green@release/v1
71+
- uses: re-actors/alls-green@05ac9388f0aebcb5727afa17fcccfecd6f8ec5fe # release/v1
7272
with:
7373
jobs: ${{ toJSON(needs) }}
7474
test:

.github/workflows/gen-update-webauthn-mds.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ env:
1313

1414
jobs:
1515
build:
16-
if: ${{ github.repository != 'goauthentik/authentik-internal' }}
1716
runs-on: ubuntu-latest
1817
steps:
1918
- id: generate_token

0 commit comments

Comments
 (0)