Browse Source

Update "GitHub Actions" CI actions versions

adaptive-webui-19844
FranciscoPombal 4 years ago
parent
commit
b63a34110e
  1. 18
      .github/workflows/ci.yaml

18
.github/workflows/ci.yaml

@ -38,7 +38,7 @@ jobs:
steps: steps:
- name: checkout repository - name: checkout repository
uses: actions/checkout@v2.3.2 uses: actions/checkout@v2.3.3
- name: install all build dependencies except libtorrent from Ubuntu repos - name: install all build dependencies except libtorrent from Ubuntu repos
run: | run: |
@ -70,7 +70,7 @@ jobs:
cmake --build build cmake --build build
- name: upload artifact as zip - name: upload artifact as zip
uses: actions/upload-artifact@v2.1.3 uses: actions/upload-artifact@v2.2.0
with: with:
name: qBittorrent-CI-Ubuntu_${{ matrix.os }}-${{ matrix.qbt_gui }} name: qBittorrent-CI-Ubuntu_${{ matrix.os }}-${{ matrix.qbt_gui }}
path: | path: |
@ -92,7 +92,7 @@ jobs:
steps: steps:
- name: checkout repository - name: checkout repository
uses: actions/checkout@v2.3.2 uses: actions/checkout@v2.3.3
# - ninja is needed for building qBittorrent (because it's preferrable, not a hard requirement) # - ninja is needed for building qBittorrent (because it's preferrable, not a hard requirement)
- name: install additional required packages with chocolatey - name: install additional required packages with chocolatey
@ -100,7 +100,7 @@ jobs:
choco install ninja choco install ninja
- name: setup vcpkg (cached, if possible) - name: setup vcpkg (cached, if possible)
uses: lukka/run-vcpkg@v3.3 uses: lukka/run-vcpkg@v4.1
with: with:
vcpkgDirectory: ${{ env.VCPKG_DEST_WIN }} vcpkgDirectory: ${{ env.VCPKG_DEST_WIN }}
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT }} vcpkgGitCommitId: ${{ env.VCPKG_COMMIT }}
@ -134,7 +134,7 @@ jobs:
# NOTE: this is necessary to correctly find and use cl.exe with the Ninja generator for now # NOTE: this is necessary to correctly find and use cl.exe with the Ninja generator for now
- name: setup devcmd - name: setup devcmd
uses: ilammy/msvc-dev-cmd@v1.3.0 uses: ilammy/msvc-dev-cmd@v1.4.1
- name: build qBittorrent - name: build qBittorrent
shell: cmd shell: cmd
@ -149,7 +149,7 @@ jobs:
cmake --build build cmake --build build
- name: upload artifact as zip - name: upload artifact as zip
uses: actions/upload-artifact@v2.1.3 uses: actions/upload-artifact@v2.2.0
with: with:
name: qBittorrent-CI-Windows_x64-static-release name: qBittorrent-CI-Windows_x64-static-release
path: | path: |
@ -175,7 +175,7 @@ jobs:
steps: steps:
- name: checkout repository - name: checkout repository
uses: actions/checkout@v2.3.2 uses: actions/checkout@v2.3.3
# - ninja is needed for building qBittorrent (because it's preferrable, not a hard requirement) # - ninja is needed for building qBittorrent (because it's preferrable, not a hard requirement)
# - pkg-config is needed for some vcpkg installations # - pkg-config is needed for some vcpkg installations
@ -185,7 +185,7 @@ jobs:
brew install ninja pkg-config brew install ninja pkg-config
- name: setup vcpkg (cached, if possible) - name: setup vcpkg (cached, if possible)
uses: lukka/run-vcpkg@v3.3 uses: lukka/run-vcpkg@v4.1
with: with:
vcpkgDirectory: ${{ env.VCPKG_DEST_MACOS }} vcpkgDirectory: ${{ env.VCPKG_DEST_MACOS }}
vcpkgGitCommitId: ${{ env.VCPKG_COMMIT }} vcpkgGitCommitId: ${{ env.VCPKG_COMMIT }}
@ -234,7 +234,7 @@ jobs:
cmake --build build cmake --build build
- name: upload artifact as zip - name: upload artifact as zip
uses: actions/upload-artifact@v2.1.3 uses: actions/upload-artifact@v2.2.0
with: with:
name: qBittorrent-CI-macOS_x64-static-release_${{ matrix.qbt_gui }} name: qBittorrent-CI-macOS_x64-static-release_${{ matrix.qbt_gui }}
path: | path: |

Loading…
Cancel
Save