Skip to content

Commit

Permalink
update GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
MehdiChinoune committed Jan 25, 2024
1 parent 17239ea commit cf01587
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linux-weekly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ jobs:

- name: Restore cached Qt
id: cache-qt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qt
key: ${{ runner.os }}-Qt-${{ matrix.QT_VER }}-Cache
Expand All @@ -136,7 +136,7 @@ jobs:
archives: qtbase qtsvg qttools qttranslations

# Python version used to build makhber must be the same for miniconda
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '${{ env.PYTHON_VERSION }}'

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

- name: Restore cached Qwt
id: cache-qwt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qwt
key: ${{ runner.os }}-Qwt-${{ env.QWT_VER }}-Qt-${{ matrix.QT_VER }}-gcc-${{ steps.gcc-version.outputs.gcc_version }}
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:

- name: Restore cached Qt
id: cache-qt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qt
key: ${{ runner.os }}-Qt-${{ matrix.QT_VER }}-Cache
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:

- name: Restore cached Qwt
id: cache-qwt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qwt
key: ${{ runner.os }}-Qwt-${{ env.QWT_VER }}-Qt-${{ matrix.QT_VER }}-gcc-${{ steps.gcc-version.outputs.gcc_version }}
Expand All @@ -88,7 +88,7 @@ jobs:
make -j$(nproc)
make install
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'

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

- name: Restore cached Qt
id: cache-qt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qt
key: ${{ runner.os }}-Qt-${{ matrix.QT_VER }}-Cache
Expand All @@ -156,7 +156,7 @@ jobs:

- name: Restore cached Qwt
id: cache-qwt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qwt
key: ${{ runner.os }}-Qwt-${{ env.QWT_VER }}-Qt-${{ matrix.QT_VER }}
Expand Down Expand Up @@ -199,7 +199,7 @@ jobs:
git pull origin master
vcpkg install zlib gsl muparser opengl gl2ps gtest pkgconf
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'

Expand Down Expand Up @@ -254,7 +254,7 @@ jobs:
- name: Restore cached Qt
if: ${{ matrix.QT_VER == '6.6.1' }}
id: cache-qt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qt
key: ${{ runner.os }}-Qt-${{ matrix.QT_VER }}-Cache
Expand All @@ -280,7 +280,7 @@ jobs:
- name: Restore cached Qwt
if: ${{ matrix.QT_VER == '6.6.1' }}
id: cache-qwt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qwt
key: ${{ runner.os }}-Qwt-${{ env.QWT_VER }}-Qt-${{ matrix.QT_VER }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:

- name: Restore cached Qt
id: cache-qt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qt
key: ${{ runner.os }}-Qt-${{ matrix.QT_VER }}-Cache
Expand All @@ -74,7 +74,7 @@ jobs:

- name: Restore cached Qwt
id: cache-qwt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qwt
key: ${{ runner.os }}-Qwt-${{ env.QWT_VER }}-Qt-${{ matrix.QT_VER }}
Expand Down Expand Up @@ -339,7 +339,7 @@ jobs:

- name: Restore cached Qt
id: cache-qt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qt
key: ${{ runner.os }}-Qt-${{ matrix.QT_VER }}-Cache
Expand All @@ -353,7 +353,7 @@ jobs:
archives: qtbase qtsvg qttools qttranslations icu

# Python version used to build makhber must be the same for miniconda
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: '${{ env.PYTHON_VERSION }}'

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

- name: Restore cached Qwt
id: cache-qwt
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/Qwt
key: ${{ runner.os }}-Qwt-${{ env.QWT_VER }}-Qt-${{ matrix.QT_VER }}-gcc-${{ steps.gcc-version.outputs.gcc_version }}
Expand Down

0 comments on commit cf01587

Please sign in to comment.