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
6 changes: 3 additions & 3 deletions .github/workflows/branch-preview.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: download ${{ matrix.target }} binary
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: ${{ matrix.target }}-binary
path: dist
Expand Down Expand Up @@ -267,12 +267,12 @@ jobs:
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: download all sc platform artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts
pattern: sc-*
- name: download bin tools artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: bin-tools
path: bin
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,19 +288,19 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: download github-actions-staging binary
if: matrix.image == 'github-actions-staging'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: github-actions-staging-binary
path: bin
- name: download github-actions binary
if: matrix.image == 'github-actions'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: github-actions-binary
path: dist
- name: download cloud-helpers binary
if: matrix.image == 'cloud-helpers-aws'
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: cloud-helpers-binary
path: dist
Expand Down Expand Up @@ -365,18 +365,18 @@ jobs:
EOF
sc secrets reveal
- name: download all build artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts
- name: download bin tools artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: bin-tools
path: bin
- name: fix bin tools permissions
run: chmod +x bin/*
- name: download docs artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: docs-site
path: docs/site
Expand Down
Loading