Skip to content
Closed
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/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install dependencies
shell: bash -l {0}
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/package-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
name: ${{ github.event.inputs.package }}@${{ github.event.ref }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Run examples and tests
uses: Macaulay2/M2/.github/actions/package-review@master
Expand All @@ -25,7 +25,7 @@ jobs:
package: ${{ github.event.inputs.package }}

- name: Upload errors
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
if: failure()
with:
name: ${{ github.event.inputs.package }}-errors
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
os: macos-13
compiler: default
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# ----------------------
# Install missing tools and libraries for macOS
Expand Down Expand Up @@ -222,7 +222,7 @@ jobs:

- name: Upload build logs
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ matrix.build-system }}-${{ matrix.os }}-${{ matrix.compiler }}-logs
path: |
Expand All @@ -246,7 +246,7 @@ jobs:

- name: Upload Macaulay2 package for Ubuntu (x86_64)
if: matrix.build-system == 'cmake' && runner.os == 'Linux' && success()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: Macaulay2-${{ env.GIT_COMMIT }}-ubuntu-x86_64
path: |
Expand Down