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 #19

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/build_openassetio/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
cmake -G Ninja -S . -DOPENASSETIO_ENABLE_C="ON" -B build
cmake --build build
cmake --install build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: OpenAssetIO Build
path: openassetio-checkout/build/dist
Expand Down
2 changes: 1 addition & 1 deletion .github/build_openassetio_mediacreation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ runs:
cmake -G Ninja -S . -B build
cmake --build build
cmake --install build
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: OpenAssetIO MediaCreation Build
path: openassetio-mediacreation-checkout/build/dist
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,13 +42,13 @@ jobs:
- uses: actions/checkout@v4

- name: Get OpenAssetIO
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: OpenAssetIO Build
path: ${{ github.workspace }}/openassetio-build

- name: Get OpenAssetIO-MediaCreation
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: OpenAssetIO MediaCreation Build
path: ${{ github.workspace }}/openassetio-mediacreation-build
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
git config --system --add safe.directory $(pwd)

- name: Get OpenAssetIO-MediaCreation
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: OpenAssetIO MediaCreation Build
path: ./openassetio-mediacreation-build
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
git config --system --add safe.directory $(pwd)

- name: Get OpenAssetIO
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.7
with:
name: OpenAssetIO Build
path: ./openassetio-build
Expand Down