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

Bump actions/download-artifact from 3 to 4.1.7 in /.github/workflows #123

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
2 changes: 1 addition & 1 deletion .github/workflows/build-docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
uses: actions/checkout@v3

- name: Download test datasets
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}
path: test/data/
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build-portable-binaries-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,12 @@ jobs:
- uses: actions/checkout@v3

- name: Download Binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: portable-bins

- name: Download test datasets
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand All @@ -205,13 +205,13 @@ jobs:
- uses: actions/checkout@v3

- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: portable-bins

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand All @@ -236,13 +236,13 @@ jobs:
- uses: actions/checkout@v3

- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: portable-bins

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand Down Expand Up @@ -295,7 +295,7 @@ jobs:
run: zypper install -y gzip libstdc++6 tar

- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: portable-bins

Expand Down Expand Up @@ -331,7 +331,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download binaries
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: portable-bins

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cache-test-datasets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
shasum -c checksum.sha512

- name: Upload test dataset
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: ${{ steps.generate-cache-key.outputs.key }}
path: ${{ env.TEST_DATASET_PATH }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/macos-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -235,13 +235,13 @@ jobs:
uses: actions/checkout@v3

- name: Download unit tests artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: unit-tests-${{ matrix.os }}-${{ matrix.compiler_name }}-${{ matrix.compiler_version }}-${{ matrix.build_type }}

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand Down Expand Up @@ -287,13 +287,13 @@ jobs:
uses: actions/checkout@v3

- name: Download binary artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries-${{ matrix.os }}-${{ matrix.compiler_name }}-${{ matrix.compiler_version }}-${{ matrix.build_type }}

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand Down Expand Up @@ -335,13 +335,13 @@ jobs:
uses: actions/checkout@v3

- name: Download binary artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries-${{ matrix.os }}-${{ matrix.compiler_name }}-${{ matrix.compiler_version }}-${{ matrix.build_type }}

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ubuntu-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -311,13 +311,13 @@ jobs:
chown -R $(id -u):$(id -g) $PWD

- name: Download unit tests artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: unit-tests-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.generator }}-${{ matrix.build_type }}

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand Down Expand Up @@ -361,13 +361,13 @@ jobs:
chown -R $(id -u):$(id -g) $PWD

- name: Download binary artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.generator }}-${{ matrix.build_type }}

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand Down Expand Up @@ -404,13 +404,13 @@ jobs:
chown -R $(id -u):$(id -g) $PWD

- name: Download binary artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: binaries-${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.generator }}-${{ matrix.build_type }}

- name: Download test datasets
id: test-dataset
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: ${{ needs.cache-test-datasets.outputs.artifact-name }}

Expand Down
Loading