Skip to content

Commit

Permalink
workflow dependency upgrade (#106)
Browse files Browse the repository at this point in the history
* workflow dependency upgrade

* workflow dependency upgrade
  • Loading branch information
Nfactor26 authored Jan 22, 2024
1 parent af3bc41 commit 15da615
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/identity-build-docker-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
uses: actions/checkout@v3
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v3
uses: docker/metadata-action@v5
with:
images: ${{ secrets.DOCKERHUB_USERNAME }}/pixel-identity
- name: Build docker image locally
uses: docker/build-push-action@v2
uses: docker/build-push-action@v5
with:
context: ./
file: ./src/Pixel.Identity.Provider/Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/identity-test-docker-image-with-mongo.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
docker run -d -p 44382:8080 --network=${{ job.container.network }}
-e AllowedOrigins=http://localhost:44382 -e IdentityHost=http://localhost:44382/pauth
--env-file ./.config/identity-mongo-with-console-email.env
--name pixel_identity_provider pixel-identity:local
--name pixel_identity_provider pixel-identity:local
- name: Print container details
run: docker container ls
- name: Setup dotnet ${{ matrix.dotnet-version }}
Expand All @@ -48,4 +48,4 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: pixel-identity-mongo-automation-test-results-${{ matrix.os }}
path: src/Pixel.Identity.UI.Tests/TestResults
path: src/Pixel.Identity.UI.Tests/TestResults/*.trx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
docker run -d -p 44382:8080 --network=${{ job.container.network }}
-e AllowedOrigins=http://localhost:44382 -e IdentityHost=http://localhost:44382/pauth
--env-file ./.config/identity-postgres-with-console-email.env
--name pixel_identity_provider pixel-identity:local
--name pixel_identity_provider pixel-identity:local
- name: Print container details
run: docker container ls
- name: Setup dotnet ${{ matrix.dotnet-version }}
Expand All @@ -54,6 +54,6 @@ jobs:
uses: actions/upload-artifact@v3
with:
name: pixel-identity-postgres-automation-test-results-${{ matrix.os }}
path: src/Pixel.Identity.UI.Tests/TestResults
path: src/Pixel.Identity.UI.Tests/TestResults/*.trx


Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public async Task<bool> TryAddRole(string roleToAdd)
{
await this.page.Locator("button#btnAddRole").ClickAsync();
var dialog = this.page.Locator("div[role='dialog']");
await dialog.Locator("input.mud-select-input").TypeAsync(roleToAdd);
await dialog.Locator("input.mud-select-input").FillAsync(roleToAdd);
await this.page.Locator("div.mud-popover-provider div.mud-list div.mud-list-item-text").WaitForAsync(new LocatorWaitForOptions()
{
Timeout = 5000
Expand Down

0 comments on commit 15da615

Please sign in to comment.