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
8 changes: 4 additions & 4 deletions .github/workflows/ci_integrations_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,25 +132,25 @@ jobs:
run: gh auth login --with-token <<< ${{ secrets.GITHUB_TOKEN }}

- name: Download MacOS Build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ci_integrations_macos
path: metrics/ci_integrations/

- name: Download Linux Build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ci_integrations_linux
path: metrics/ci_integrations/

- name: Download Linux SHA256 Hash
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ci_integrations_linux_sha256
path: metrics/ci_integrations/

- name: Download MacOS SHA256 Hash
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ci_integrations_macos_sha256
path: metrics/ci_integrations/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/cli_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,25 +110,25 @@ jobs:
run: gh auth login --with-token <<< ${{ secrets.GITHUB_TOKEN }}

- name: Download MacOS Build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ${{ env.MACOS_BUILD_NAME }}
path: metrics/cli/

- name: Download Linux Build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ${{ env.LINUX_BUILD_NAME }}
path: metrics/cli/

- name: Download Linux SHA256 Hash
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ${{ env.LINUX_BUILD_NAME }}.sha256
path: metrics/cli/

- name: Download MacOS SHA256 Hash
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: ${{ env.MACOS_BUILD_NAME }}.sha256
path: metrics/cli/
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/coverage_converter_actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,25 +149,25 @@ jobs:
run: gh auth login --with-token <<< ${{ secrets.GITHUB_TOKEN }}

- name: Download MacOS Build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: coverage_converter_macos
path: metrics/coverage_converter/

- name: Download Linux Build
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: coverage_converter_linux
path: metrics/coverage_converter/

- name: Download MacOS SHA256 Hash
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: coverage_converter_macos_sha256
path: metrics/coverage_converter/

- name: Download Linux SHA256 Hash
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4.1.7
with:
name: coverage_converter_linux_sha256
path: metrics/coverage_converter/
Expand Down