forked from ory/kratos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #15 from fulcrumapp/task/update-upstream
Task/update upstream
- Loading branch information
Showing
813 changed files
with
29,224 additions
and
9,448 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
- sdk-generate | ||
services: | ||
postgres: | ||
image: postgres:11.8 | ||
image: postgres:14 | ||
env: | ||
POSTGRES_DB: postgres | ||
POSTGRES_PASSWORD: test | ||
|
@@ -79,22 +79,24 @@ jobs: | |
fetch-depth: 2 | ||
- uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.22" | ||
go-version: "1.23" | ||
- run: go list -json > go.list | ||
- name: Run nancy | ||
uses: sonatype-nexus-community/[email protected] | ||
with: | ||
nancyVersion: v1.0.42 | ||
- run: | | ||
sudo apt-get update | ||
name: apt-get update | ||
- run: npm install | ||
name: Install node deps | ||
- name: Run golangci-lint | ||
uses: golangci/golangci-lint-action@v4 | ||
uses: golangci/golangci-lint-action@v6 | ||
env: | ||
GOGC: 100 | ||
with: | ||
args: --timeout 10m0s | ||
version: v1.56.2 | ||
skip-pkg-cache: true | ||
version: v1.61.0 | ||
- name: Build Kratos | ||
run: make install | ||
- name: Run go-acc (tests) | ||
|
@@ -112,15 +114,15 @@ jobs: | |
- sdk-generate | ||
services: | ||
postgres: | ||
image: postgres:11.8 | ||
image: postgres:14 | ||
env: | ||
POSTGRES_DB: postgres | ||
POSTGRES_PASSWORD: test | ||
POSTGRES_USER: test | ||
ports: | ||
- 5432:5432 | ||
mysql: | ||
image: mysql:5.7 | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_ROOT_PASSWORD: test | ||
ports: | ||
|
@@ -159,6 +161,9 @@ jobs: | |
- uses: ory/ci/checkout@master | ||
with: | ||
fetch-depth: 2 | ||
- run: | | ||
sudo apt-get update | ||
name: apt-get update | ||
- run: | | ||
npm ci | ||
cd test/e2e; npm ci | ||
|
@@ -170,7 +175,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.22" | ||
go-version: "1.23" | ||
|
||
- name: Install selfservice-ui-react-native | ||
uses: actions/checkout@v3 | ||
|
@@ -211,9 +216,9 @@ jobs: | |
REACT_UI_PATH: react-ui | ||
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} | ||
- if: failure() | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: logs | ||
name: cypress-${{ matrix.database }}-logs | ||
path: test/e2e/*.e2e.log | ||
|
||
test-e2e-playwright: | ||
|
@@ -223,15 +228,15 @@ jobs: | |
- sdk-generate | ||
services: | ||
postgres: | ||
image: postgres:11.8 | ||
image: postgres:14 | ||
env: | ||
POSTGRES_DB: postgres | ||
POSTGRES_PASSWORD: test | ||
POSTGRES_USER: test | ||
ports: | ||
- 5432:5432 | ||
mysql: | ||
image: mysql:5.7 | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_ROOT_PASSWORD: test | ||
ports: | ||
|
@@ -262,6 +267,9 @@ jobs: | |
- uses: ory/ci/checkout@master | ||
with: | ||
fetch-depth: 2 | ||
- run: | | ||
sudo apt-get update | ||
name: apt-get update | ||
- run: | | ||
npm ci | ||
cd test/e2e; npm ci | ||
|
@@ -274,7 +282,7 @@ jobs: | |
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: "1.22" | ||
go-version: "1.23" | ||
- run: go build -tags sqlite,json1 . | ||
|
||
- name: Install selfservice-ui-react-native | ||
|
@@ -321,14 +329,14 @@ jobs: | |
NODE_UI_PATH: node-ui | ||
REACT_UI_PATH: react-ui | ||
- if: failure() | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: logs | ||
name: playwright-${{ matrix.database }}-logs | ||
path: test/e2e/*.e2e.log | ||
- if: failure() | ||
uses: actions/upload-artifact@v2 | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: playwright-test-results-${{ github.sha }} | ||
name: playwright-test-results-${{ matrix.database }}-${{ github.sha }} | ||
path: | | ||
test/e2e/test-results/ | ||
test/e2e/playwright-report/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.