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
6 changes: 3 additions & 3 deletions .github/actions/setup-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ runs:

- name: Install dependencies (Ubuntu)
if: runner.os == 'Linux' && steps.setup.outputs.container == 'false'
uses: awalsh128/cache-apt-pkgs-action@a605dbde2ac49a823c9c87ad58491b51848bf355 # for empty_packages_behavior
uses: awalsh128/cache-apt-pkgs-action@acb598e5ddbc6f68a970c5da0688d2f3a9f04d05 # v 1.6.0 for empty_packages_behavior
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This line can use awalsh128/cache-apt-pkgs-action@v1 once the upstream v1 tag has been updated correctly.

By the way, thanks for opening this PR!

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you ask me to change it to @v1 now? For me this would be the right way, I just wanted to stick to the style already used for third-party actions.

with:
# We assume libgmp-dev and zlib1g-dev are always installed.
packages: >-
Expand Down Expand Up @@ -450,7 +450,7 @@ runs:
- name: Cache FLINT
id: cache-flint
if: steps.setup.outputs.build_flint == 'true'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: lib/flint
# Here, we set a conservative cache key so that the cache is not reused
Expand Down Expand Up @@ -509,7 +509,7 @@ runs:
- name: Cache FORM library
id: cache-formlib
if: steps.setup.outputs.formlib == 'true'
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: formlib
key: ${{ steps.setup.outputs.formlib_key }}
Expand Down
28 changes: 14 additions & 14 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # ensures a reachable tag

Expand All @@ -36,7 +36,7 @@ jobs:
tar -tf "$distname.tar.gz"

- name: Upload tarball as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: src
path: '*.tar.gz'
Expand Down Expand Up @@ -75,13 +75,13 @@ jobs:
- {os: windows-2022, shell: msys2, bin: tform}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
sparse-checkout: .github/actions
sparse-checkout-cone-mode: false

- name: Download tarball
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: src

Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:

- name: Upload binary as artifact
if: steps.check-portability.outcome == 'success' && steps.check-portability.conclusion == 'success'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.bin }}-${{ matrix.os }}
path: |
Expand All @@ -146,13 +146,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
sparse-checkout: .github/actions
sparse-checkout-cone-mode: false

- name: Download tarball
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: src

Expand All @@ -174,7 +174,7 @@ jobs:
file "$distname.pdf"

- name: Upload document as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: doc-pdf
path: '*.pdf'
Expand All @@ -188,13 +188,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
sparse-checkout: .github/actions
sparse-checkout-cone-mode: false

- name: Download tarball
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: src

Expand Down Expand Up @@ -236,7 +236,7 @@ jobs:
tar -tf "$distname.tar.gz"

- name: Upload file as artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: doc-html
path: '*.tar.gz'
Expand All @@ -255,7 +255,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download all artifacts
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: artifacts

Expand Down Expand Up @@ -316,7 +316,7 @@ jobs:
# Upload the distributions as an artifact, regardless of whether
# the commit has a versioning tag. This makes checking and debugging easy.
- name: Upload distributions as artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: dist
path: |
Expand All @@ -333,7 +333,7 @@ jobs:
# a versioning tag.
- name: Publish distributions
if: startsWith(github.ref, 'refs/tags/v')
uses: softprops/action-gh-release@v2
uses: softprops/action-gh-release@v3
with:
files: |
dist/*.tar.gz
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- {bin: tform, test: extra, timeout: 60, nthreads: 2, flint: no}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # ensures a reachable tag

Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- {bin: parform, test: default, timeout: 15}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # ensures a reachable tag

Expand Down Expand Up @@ -120,7 +120,7 @@ jobs:
- {bin: tvorm, test: extra, nthreads: 2, group: 1/1}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # ensures a reachable tag

Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
- {bin: tvorm, test: extra, timeout: 60, nthreads: 2, flint: no}
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
fetch-depth: 0 # ensures a reachable tag

Expand Down
Loading