Skip to content

Commit

Permalink
Update GHA action versions
Browse files Browse the repository at this point in the history
  • Loading branch information
arBmind committed Jul 29, 2024
1 parent 98a771f commit 233ddab
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
qmake --version
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- run: qmake -r "CONFIG+=${{ matrix.std_cpp }}"
- run: make -j
Expand All @@ -45,7 +45,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build & Test
run: >-
Expand Down Expand Up @@ -80,13 +80,13 @@ jobs:
steps:
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ../Qt
key: QtCache-${{ matrix.qt_version }}-${{ matrix.qt_arch }}

- name: Install Qt
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v4
with:
version: "${{ matrix.qt_version }}"
arch: "${{ matrix.qt_arch }}"
Expand All @@ -104,7 +104,7 @@ jobs:
clang++ --version
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- run: qmake -r "CONFIG+=${{ matrix.std_cpp }}"
- run: make -j
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/gcc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Build & Test
run: >-
Expand Down Expand Up @@ -52,13 +52,13 @@ jobs:
steps:
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ../Qt
key: QtCache-${{ matrix.qt_version }}-${{ matrix.qt_arch }}

- name: Install Qt
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v4
with:
version: "${{ matrix.qt_version }}"
arch: "${{ matrix.qt_arch }}"
Expand All @@ -75,7 +75,7 @@ jobs:
g++ --version
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- run: qmake -r "CONFIG+=${{ matrix.std_cpp }}"
- run: make -j
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ jobs:
steps:
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ../Qt
key: QtCache-${{ matrix.qt_version }}-${{ matrix.qt_arch }}

- name: Install Qt
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v4
with:
version: "${{ matrix.qt_version }}"
arch: "${{ matrix.qt_arch }}"
Expand All @@ -57,7 +57,7 @@ jobs:
qbs config --list profiles
- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- run: >-
qbs build
Expand Down Expand Up @@ -87,13 +87,13 @@ jobs:
steps:
- name: Cache Qt
id: cache-qt
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: ../Qt
key: QtCache-${{ matrix.qt_version }}-${{ matrix.qt_arch }}

- name: Install Qt
uses: jurplel/install-qt-action@v2
uses: jurplel/install-qt-action@v4
with:
version: "${{ matrix.qt_version }}"
arch: "${{ matrix.qt_arch }}"
Expand All @@ -103,7 +103,7 @@ jobs:
uses: ilammy/msvc-dev-cmd@v1

- name: Git Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- run: qmake -r
- run: nmake
Expand Down

0 comments on commit 233ddab

Please sign in to comment.