Skip to content

Commit

Permalink
Merge branch 'master' into new_ui_openlogin
Browse files Browse the repository at this point in the history
  • Loading branch information
vinayaktorus committed Jun 10, 2024
2 parents 121b3bb + 7f648fa commit e53b8b2
Show file tree
Hide file tree
Showing 7 changed files with 21 additions and 21 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/authservice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
default: "testing"

env:
NODE_VERSION: 16
NODE_VERSION: 20

jobs:
build:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
# conclusion: ${{ steps.run-tests.conclusion }}
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: new_ui_openlogin
- name: Unlock secrets
Expand Down Expand Up @@ -89,7 +89,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: artifact-${{ github.run_id }}-${{ github.job }}-${{ steps.get-time.outputs.timestamp }}
path: test-results/*
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/codebuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
# - cron: "0 * * * *"
workflow_dispatch:
env:
NODE_VERSION: 16
NODE_VERSION: 20
jobs:
build:
name: Run OpenLogin - tests
Expand All @@ -22,9 +22,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/demowalletservice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
default: "testing"

env:
NODE_VERSION: 16
NODE_VERSION: 20

jobs:
build:
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: new_ui_openlogin
- name: Unlock secrets
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: test-results/*
if-no-files-found: ignore
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
workflow_dispatch:

env:
NODE_VERSION: 16
NODE_VERSION: 20

jobs:
run-lighthouse:
name: Run Lighthouse
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v3
Expand All @@ -36,7 +36,7 @@ jobs:
tree -H '.' -L 1 --noreport --charset utf-8 -P "*.html" -o index.html
- name: Upload results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: lighthouse

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/v3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
default: "testing"

env:
NODE_VERSION: 16
NODE_VERSION: 20

jobs:
build:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
# conclusion: ${{ steps.run-tests.conclusion }}
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: new_ui_openlogin
- name: Unlock secrets
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: test-results/*
if-no-files-found: ignore
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/v4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
default: "testing"

env:
NODE_VERSION: 16
NODE_VERSION: 20

jobs:
build:
Expand All @@ -37,7 +37,7 @@ jobs:
# conclusion: ${{ steps.run-tests.conclusion }}
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: new_ui_openlogin
- name: Unlock secrets
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: test-results/*
if-no-files-found: ignore
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/walletservice.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
default: "testing"

env:
NODE_VERSION: 16
NODE_VERSION: 20

jobs:
build:
Expand All @@ -29,7 +29,7 @@ jobs:
runs-on: macos-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: new_ui_openlogin
- name: Unlock secrets
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
- name: Upload test results
if: always()
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: test-results/*
if-no-files-found: ignore
Expand Down

0 comments on commit e53b8b2

Please sign in to comment.