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

Pin reusable workflows to tag instead of SHA #201

Merged
merged 1 commit into from
Oct 25, 2023
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@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.1.0
with:
image_name: 'file-server'
package_dependencies: |
Expand All @@ -37,7 +37,7 @@ jobs:
build-multi-architecture:
name: Build multi-architecture container image
needs: build
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.1.0
with:
image_name: 'file-server'
secrets:
Expand All @@ -46,7 +46,7 @@ jobs:
deploy-stage:
name: Deploy to staging environment
needs: build-multi-architecture
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.0
with:
environment: stage
service_name: 'file-server'
Expand All @@ -63,7 +63,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@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.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@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/build_container_image.yml@v0.1.0
with:
image_name: 'forge-k8s'
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@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/merge_multiarch_images.yml@v0.1.0
with:
image_name: 'forge-k8s'
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@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.0
with:
environment: stage
service_name: 'forge-k8s'
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@7808b849474ae9bc8dfc7f6db19e66d241018c94
uses: flowfuse/github-actions-workflows/.github/workflows/deploy_container_image.yml@v0.1.0
with:
environment: production
service_name: 'forge-k8s'
Expand Down
Loading