Skip to content

Commit 4ab7b57

Browse files
Bump actions/upload-artifact from 5 to 6 (#122)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sanathkeshav <sanathkeshav.mysore@gmail.com>
1 parent edc8ede commit 4ab7b57

File tree

4 files changed

+26
-13
lines changed

4 files changed

+26
-13
lines changed

.github/workflows/build_and_test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ jobs:
4646
cmake --version
4747
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_EXPORT_COMPILE_COMMANDS=ON ..
4848
49-
- uses: actions/upload-artifact@v5
49+
- uses: actions/upload-artifact@v6
5050
if: failure()
5151
with:
5252
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CMakeCache
5353
path: ${{ env.FANS_BUILD_DIR }}/CMakeCache.txt
54-
- uses: actions/upload-artifact@v5
54+
- uses: actions/upload-artifact@v6
5555
if: failure()
5656
with:
5757
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CMakeLogs
5858
path: '${{ env.FANS_BUILD_DIR }}/CMakeFiles/*.log'
59-
- uses: actions/upload-artifact@v5
59+
- uses: actions/upload-artifact@v6
6060
if: failure()
6161
with:
6262
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CompileCommands
@@ -75,7 +75,7 @@ jobs:
7575
run: |
7676
su -c "ctest" ${{ env.FANS_MPI_USER }}
7777
78-
- uses: actions/upload-artifact@v5
78+
- uses: actions/upload-artifact@v6
7979
if: failure()
8080
with:
8181
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} CTest logs
@@ -87,7 +87,7 @@ jobs:
8787
- name: Run pytest checks on HDF5 output
8888
run: pixi run -e dashboard pytest
8989

90-
- uses: actions/upload-artifact@v5
90+
- uses: actions/upload-artifact@v6
9191
if: failure()
9292
with:
9393
name: ${{ format('Ubuntu {0}', matrix.UBUNTU_VERSION) }} PyTest logs

.github/workflows/pixi_build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ jobs:
3131
run: pixi run test
3232

3333
- name: Upload test logs
34-
uses: actions/upload-artifact@v5
34+
uses: actions/upload-artifact@v6
3535
with:
3636
name: ${{ matrix.os }} test-logs
3737
path: test/output/*.log
3838

39-
- uses: actions/upload-artifact@v5
39+
- uses: actions/upload-artifact@v6
4040
if: failure()
4141
with:
4242
name: ${{ matrix.os }} PyTest logs

pixi.lock

Lines changed: 18 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pixi.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ extra-args = [
5858
]
5959

6060
[workspace.target.osx-arm64.build-variants]
61+
cxx_compiler = ["clangxx"]
6162

6263
[workspace.target.linux-64.build-variants]
6364
cxx_compiler = ["clangxx"]

0 commit comments

Comments
 (0)