Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Bump reusable workflows version to v0.4.0 #271

Merged
merged 1 commit into from
Jan 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/fileserver-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
build:
name: Build single-architecture container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.2.1
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.4.0
with:
image_name: 'file-server'
package_dependencies: |
Expand All @@ -38,7 +38,7 @@ jobs:
build-multi-architecture:
name: Build multi-architecture container image
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.1.0
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.4.0
with:
image_name: 'file-server'
secrets:
Expand All @@ -47,7 +47,7 @@ jobs:
deploy-stage:
name: Deploy to staging environment
needs: build-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: stage
service_name: 'file-server'
Expand All @@ -64,7 +64,7 @@ jobs:
if: github.ref_name == 'main'
name: Deploy to production environment
needs: [build-multi-architecture, deploy-stage]
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: production
service_name: 'file-server'
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/flowforge-container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ concurrency:
jobs:
build:
name: Build single-architecture container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.2.1
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.4.0
with:
image_name: 'forge-k8s'
package_dependencies: |
Expand All @@ -39,7 +39,7 @@ jobs:
build-multi-architecture:
name: Build multi-architecture container image
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.1.0
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.4.0
with:
image_name: 'forge-k8s'
secrets:
Expand All @@ -48,7 +48,7 @@ jobs:
deploy-stage:
name: Deploy to staging environment
needs: build-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: stage
service_name: 'forge-k8s'
Expand All @@ -65,7 +65,7 @@ jobs:
if: github.ref_name == 'main'
name: Deploy to production environment
needs: [build-multi-architecture, deploy-stage]
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.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 @@ -23,7 +23,7 @@ concurrency:
jobs:
build-302:
name: Build 3.0.2 container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.2.1
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.4.0
with:
image_name: 'node-red'
dockerfile_path: Dockerfile
Expand All @@ -39,7 +39,7 @@ jobs:
build-302-multi-architecture:
name: Build multi-architecture container image
needs: build-302
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.4.0
with:
image_name: 'node-red'
image_tag_prefix: '3.0.2-'
Expand All @@ -48,7 +48,7 @@ jobs:
upload-302-stage:
name: Upload image to staging ECR
needs: build-302-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: stage
service_name: 'node-red'
Expand All @@ -66,7 +66,7 @@ jobs:
name: Upload image to production ECR
if: github.ref_name == 'main'
needs: build-302-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: production
service_name: 'node-red'
Expand All @@ -83,7 +83,7 @@ jobs:

build-223:
name: Build 2.2.3 container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.2.1
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.4.0
with:
image_name: 'node-red'
dockerfile_path: Dockerfile-2.2.x
Expand All @@ -99,7 +99,7 @@ jobs:
build-223-multi-architecture:
name: Build multi-architecture container image
needs: build-223
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.4.0
with:
image_name: 'node-red'
image_tag_prefix: '2.2.3-'
Expand All @@ -108,7 +108,7 @@ jobs:
upload-223-stage:
name: Upload image to staging ECR
needs: build-223-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: stage
service_name: 'node-red'
Expand All @@ -126,7 +126,7 @@ jobs:
name: Upload image to production ECR
if: github.ref_name == 'main'
needs: build-223-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: production
service_name: 'node-red'
Expand All @@ -143,7 +143,7 @@ jobs:

build-310:
name: Build 3.1.x container images
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.2.1
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.4.0
with:
image_name: 'node-red'
dockerfile_path: Dockerfile-3.1
Expand All @@ -159,7 +159,7 @@ jobs:
build-310-multi-architecture:
name: Build multi-architecture container image
needs: build-310
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.4.0
with:
image_name: 'node-red'
image_tag_prefix: '3.1.x-'
Expand All @@ -168,7 +168,7 @@ jobs:
upload-310-stage:
name: Upload image to staging ECR
needs: build-310-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: stage
service_name: 'node-red'
Expand All @@ -186,7 +186,7 @@ jobs:
name: Upload image to production ECR
if: github.ref_name == 'main'
needs: build-310-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.2.0
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.4.0
with:
environment: production
service_name: 'node-red'
Expand Down
Loading