Skip to content

Commit

Permalink
ci: add dependabot actions
Browse files Browse the repository at this point in the history
Signed-off-by: Lachlan Heywood <[email protected]>
  • Loading branch information
lachieh committed Jan 7, 2025
1 parent 742f41a commit f8eedf0
Show file tree
Hide file tree
Showing 6 changed files with 1,247 additions and 28 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,6 @@ updates:
schedule:
interval: "daily"
- package-ecosystem: "github-actions"
directory: "/.github/actions/*"
directory: "/.github/actions/"
schedule:
interval: "daily"
2 changes: 1 addition & 1 deletion .github/workflows/examples_component.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
check:
runs-on: ubuntu-latest
outputs:
run-build: ${{ steps.force.outputs.force || steps.check-example-changes.outputs.all_changed_files_count > 0 }}
run-build: ${{ steps.force.outputs.force || steps.check-example-changes.outputs.any_changed }}
steps:
- name: Force build if needed
id: force
Expand Down
2 changes: 1 addition & 1 deletion examples/components/http-hello-world/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "http-hello-world",
"name": "@wasmcloud-example/http-hello-world",
"version": "0.1.0",
"description": "A WebAssembly Component that responds to HTTP requests using the `wasi:http` WIT interface",
"main": "dist/http-hello-world.js",
Expand Down
2 changes: 1 addition & 1 deletion examples/components/http-password-checker/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "ts-http-password-checker",
"name": "@wasmcloud-example/http-password-checker",
"version": "0.1.0",
"description": "",
"main": "dist/http-password-checker.js",
Expand Down
6 changes: 4 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
{
"packageManager": "[email protected]",
"name": "@wasmcloud/monorepo",
"name": "@wasmcloud/typescript",
"type": "commonjs",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
"packages/*",
"examples/components/*",
"examples/providers/*"
],
"scripts": {
"build": "turbo run build",
Expand Down
Loading

0 comments on commit f8eedf0

Please sign in to comment.