Skip to content

Commit

Permalink
chore(deps): bump flowfuse/github-actions-workflows
Browse files Browse the repository at this point in the history
Bumps [flowfuse/github-actions-workflows](https://github.com/flowfuse/github-actions-workflows) from 0.34.0 to 0.36.0.
- [Commits](FlowFuse/github-actions-workflows@v0.34.0...v0.36.0)

---
updated-dependencies:
- dependency-name: flowfuse/github-actions-workflows
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 14, 2024
1 parent 38c9126 commit 44388f1
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 22 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/fileserver-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ concurrency:
jobs:
build:
name: Build single-architecture container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.36.0
with:
image_name: 'file-server'
package_dependencies: |
Expand All @@ -45,7 +45,7 @@ jobs:
if: github.ref_name == 'main'
name: Upload image to staging registry
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'file-server'
Expand All @@ -63,7 +63,7 @@ jobs:
if: github.ref_name == 'main'
name: Upload image to production registry
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'file-server'
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
if: false
name: Deploy to staging environment
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'file-server'
Expand All @@ -136,7 +136,7 @@ jobs:
if: false
name: Deploy to production environment
needs: [build, deploy-stage]
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'file-server'
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/flowforge-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ concurrency:
jobs:
build:
name: Build single-architecture container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.36.0
with:
image_name: 'forge-k8s'
package_dependencies: |
Expand All @@ -48,7 +48,7 @@ jobs:
name: Upload image to staging registry
needs: build
# needs: build-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'forge-k8s'
Expand All @@ -68,7 +68,7 @@ jobs:
name: Upload image to production registry
# needs: build-multi-architecture
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'forge-k8s'
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
if: false
name: Deploy to staging environment
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'forge-k8s'
Expand All @@ -142,7 +142,7 @@ jobs:
if: false
name: Deploy to production environment
needs: [build, deploy-stage]
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'forge-k8s'
Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/nodered-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ concurrency:
jobs:
build-302:
name: Build 3.0.2 container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.36.0
with:
image_name: 'node-red'
dockerfile_path: Dockerfile
Expand All @@ -49,7 +49,7 @@ jobs:
name: Upload image to staging ECR
if: github.ref_name == 'main'
needs: build-302
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'node-red'
Expand All @@ -67,7 +67,7 @@ jobs:
name: Upload image to production ECR
if: github.ref_name == 'main'
needs: build-302
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'node-red'
Expand All @@ -84,7 +84,7 @@ jobs:

build-223:
name: Build 2.2.3 container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.36.0
with:
image_name: 'node-red'
dockerfile_path: Dockerfile-2.2.x
Expand All @@ -103,7 +103,7 @@ jobs:
name: Upload image to staging ECR
if: github.ref_name == 'main'
needs: build-223
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'node-red'
Expand All @@ -121,7 +121,7 @@ jobs:
name: Upload image to production ECR
if: github.ref_name == 'main'
needs: build-223
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'node-red'
Expand All @@ -138,7 +138,7 @@ jobs:

build-310:
name: Build 3.1.x container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.36.0
with:
image_name: 'node-red'
dockerfile_path: Dockerfile-3.1
Expand All @@ -157,7 +157,7 @@ jobs:
name: Upload image to staging ECR
if: github.ref_name == 'main'
needs: build-310
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'node-red'
Expand All @@ -175,7 +175,7 @@ jobs:
name: Upload image to production ECR
if: github.ref_name == 'main'
needs: build-310
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'node-red'
Expand All @@ -192,7 +192,7 @@ jobs:

build-40:
name: Build 4.0.x container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.36.0
with:
image_name: 'node-red'
dockerfile_path: Dockerfile-4.0
Expand All @@ -211,7 +211,7 @@ jobs:
name: Upload image to staging ECR
if: github.ref_name == 'main'
needs: build-40
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: stage
service_name: 'node-red'
Expand All @@ -229,7 +229,7 @@ jobs:
name: Upload image to production ECR
if: github.ref_name == 'main'
needs: build-40
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.34.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.36.0
with:
environment: production
service_name: 'node-red'
Expand Down

0 comments on commit 44388f1

Please sign in to comment.