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
6 changes: 3 additions & 3 deletions .github/workflows/build-arch-emu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: lscpu

- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
# shell: bash

- name: install dependencies
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
# location of the ccache of the chroot in the root file system
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
Expand Down Expand Up @@ -175,7 +175,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /home/runner/rootfs/alpine-latest-${{ matrix.arch }}/home/runner/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build-mingw.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
mpfr:p

- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: prepare ccache
# create key with human readable timestamp
Expand All @@ -104,7 +104,7 @@ jobs:

- name: restore ccache
# Setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -173,7 +173,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run: lscpu

- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: install dependencies
run: |
Expand All @@ -104,7 +104,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:

steps:
- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: install dependencies
run: |
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
msystem: MINGW32

- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: initialize CodeQL
# Initialize the CodeQL tools for scanning.
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/cross-compile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
echo "::endgroup::"
- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: install cross-toolchain
run: |
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
# location of the ccache of the chroot in the root file system
path: /home/runner/.ccache
Expand Down Expand Up @@ -249,7 +249,7 @@ jobs:
- name: save ccache
# Save the cache after we are done (successfully) building
# This helps to retain the ccache even if the subsequent steps are failing
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /home/runner/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/macos.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
sysctl machdep

- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: install dependencies
# Homebrew's Python conflicts with the Python that comes pre-installed
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: /Users/runner/Library/Caches/ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -202,7 +202,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: /Users/runner/Library/Caches/ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/root-cmakelists-msvc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -82,15 +82,15 @@ jobs:
Get-CIMInstance -Class Win32_Processor | Select-Object -Property Name
- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- uses: conda-incubator/setup-miniconda@v3
with:
auto-update-conda: true

- name: cache conda packages
id: conda-cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: C:/Miniconda/envs/test
key: conda:netlib:msvc
Expand All @@ -106,7 +106,7 @@ jobs:
- name: save conda cache
if: ${{ steps.conda-cache.outputs.cache-hit != 'true' }}
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: C:/Miniconda/envs/test
key: ${{ steps.conda-cache.outputs.cache-primary-key }}
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
- name: restore ccache
# Setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -260,7 +260,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ${{ steps.ccache-prepare.outputs.ccachedir }}
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/root-cmakelists.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
run: lscpu

- name: checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: install dependencies
run: |
Expand All @@ -88,7 +88,7 @@ jobs:

- name: restore ccache
# setup the GitHub cache used to maintain the ccache from one job to the next
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down Expand Up @@ -187,7 +187,7 @@ jobs:
# Save the cache after we are done building
# This helps to retain the ccache even if the subsequent steps are failing.
if: always() && (steps.build.outcome != 'skipped')
uses: actions/cache/save@v4
uses: actions/cache/save@v5
with:
path: ~/.ccache
key: ${{ steps.ccache-prepare.outputs.key }}
Expand Down
Loading