Skip to content

Commit

Permalink
Merge pull request #3393 from signalco-io/next
Browse files Browse the repository at this point in the history
Next
  • Loading branch information
AleksandarDev authored Sep 5, 2023
2 parents 011dd09 + 9e15772 commit c138cee
Show file tree
Hide file tree
Showing 70 changed files with 1,158 additions and 962 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cloud-deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout GitHub Action"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ✋ Set up mutex
id: mutex-setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cloud-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Checkout GitHub Action"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: ✋ Set up mutex
id: mutex-setup
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/companions-maui-build-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
matrix:
configuration: ['Debug', 'Release']
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global-codeql_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global-create_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v3
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global-smart-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Enable auto-merge for known users
if: github.event.pull_request.user.login == 'AleksandarDev'
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/global-sync-next-branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Create Pull Request
uses: repo-sync/pull-request@v2
id: cpr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nextjs_bundle_analysis_reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}-${{ inputs.name }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/station-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
target: win-x64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/station-release-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup .NET
uses: actions/setup-dotnet@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-stories-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup pnpm
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/web-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
container:
image: mcr.microsoft.com/playwright:v1.37.1-focal
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup pnpm
Expand Down
12 changes: 6 additions & 6 deletions cloud/infrastructure/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
"restart-functions": "node tools/restart-functions.js"
},
"devDependencies": {
"@types/node": "18.17.12",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"@types/node": "18.17.14",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"eslint": "8.48.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.28.1",
Expand All @@ -21,11 +21,11 @@
},
"dependencies": {
"@checkly/pulumi": "1.1.4",
"@pulumi/aws": "6.0.2",
"@pulumi/azure-native": "2.4.0",
"@pulumi/aws": "6.0.4",
"@pulumi/azure-native": "2.5.0",
"@pulumi/cloudflare": "5.9.0",
"@pulumi/command": "0.8.2",
"@pulumi/docker": "4.3.2",
"@pulumi/pulumi": "3.79.0"
"@pulumi/pulumi": "3.80.0"
}
}
Loading

6 comments on commit c138cee

@vercel
Copy link

@vercel vercel bot commented on c138cee Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on c138cee Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-app – ./web/apps/app

app.signalco.io
signalco-app.vercel.app
signalco-app-git-main-signalco.vercel.app
signalco-app-signalco.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c138cee Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-ui-docs – ./web/apps/ui-docs

signalco-ui-docs.vercel.app
signalco-ui-docs-signalco.vercel.app
ui.signalco.io
signalco-ui-docs-git-main-signalco.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c138cee Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@vercel
Copy link

@vercel vercel bot commented on c138cee Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-blog – ./web/apps/blog

signalco-blog-git-main-signalco.vercel.app
signalco-blog.vercel.app
blog.signalco.io
signalco-blog-signalco.vercel.app

@vercel
Copy link

@vercel vercel bot commented on c138cee Sep 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

signalco-slco – ./web/apps/slco

signalco-slco-git-main-signalco.vercel.app
signalco-slco.vercel.app
slco.signalco.io
signalco-slco-signalco.vercel.app
slco.io

Please sign in to comment.