Skip to content
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/backport.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
echo "matched=$matched" >> $GITHUB_OUTPUT
- name: Backport Action
if: fromJSON(steps.check_labels.outputs.matched) > 0
uses: sorenlouv/backport-github-action@v12.0.0
uses: sorenlouv/backport-github-action@v12.0.4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
auto_backport_label_prefix: backport-to-
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
env:
MACOSX_DEPLOYMENT_TARGET: 10.15
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: |
sudo apt update
sudo apt install autoconf-archive lcov texlive
Expand All @@ -40,7 +40,7 @@ jobs:
if: matrix.os == 'macos-15'
- run: brew install automake autoconf-archive lcov texinfo
if: ${{ startsWith(matrix.os, 'macos') }}
- uses: msys2/setup-msys2@v2.31.1
- uses: msys2/setup-msys2@v2.32.0
name: Setup msys2
with:
install: >-
Expand All @@ -59,7 +59,7 @@ jobs:
if: ${{ startsWith(matrix.os, 'windows') }}
- name: Cache GNU GMP builds
id: cache-gmp
uses: actions/cache@v5
uses: actions/cache@v6
with:
path: .local
key: ${{ matrix.os }}-${{ hashFiles('scripts/*') }}
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
needs:
- tests
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0
- run: sudo apt update
Expand All @@ -108,7 +108,7 @@ jobs:
path: |
coverage/
coverage*.info
- uses: codecov/codecov-action@v6
- uses: codecov/codecov-action@v7
with:
token: ${{ secrets.CODECOV_TOKEN }}
gcov_include: '*.c'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- run: sudo apt update
- run: sudo apt install autoconf-archive texlive
- run: mkdir m4 && autoreconf -if
Expand Down
Loading