Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/clean-build-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ jobs:
cache: 'npm'

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: core-build
path: .
Expand Down Expand Up @@ -470,7 +470,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts/

Expand Down Expand Up @@ -519,7 +519,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts/

Expand Down Expand Up @@ -594,7 +594,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Download deployment bundle
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: deployment-bundle
path: deploy-bundle/
Expand Down Expand Up @@ -625,7 +625,7 @@ jobs:
node-version: ${{ env.NODE_VERSION }}

- name: Download deployment bundle
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: deployment-bundle
path: deploy-bundle/
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/clean-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ jobs:
uses: actions/checkout@v4

- name: Download manager artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: manager-build
path: dist/
Expand Down Expand Up @@ -455,7 +455,7 @@ jobs:
url: https://staging.heady.systems
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8

- name: Deploy to staging
run: |
Expand Down Expand Up @@ -489,7 +489,7 @@ jobs:
url: https://www.heady.systems
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8

- name: Deploy to production
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/electron-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

Expand Down Expand Up @@ -256,7 +256,7 @@ jobs:
contents: write
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hcfp-clean-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ jobs:

steps:
- name: 📥 Download All Build Artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: deploy-artifacts/
pattern: build-*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/hcfp-production-clean-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ jobs:
echo "✅ Deployment configuration validation complete"

- name: Download build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: node-build
path: dist/
Expand Down
Loading