diff options
author | Saturneric <[email protected]> | 2023-03-31 08:39:05 +0000 |
---|---|---|
committer | Saturneric <[email protected]> | 2023-03-31 08:39:05 +0000 |
commit | ae5bbe98c80bdfb9697f59c9fc6c37b4babb0517 (patch) | |
tree | f7002173d0c8ac853471503c10c6edc3aede29df | |
parent | feat: update ui file of network settings (diff) | |
download | GpgFrontend-ae5bbe98c80bdfb9697f59c9fc6c37b4babb0517.tar.gz GpgFrontend-ae5bbe98c80bdfb9697f59c9fc6c37b4babb0517.zip |
fix: solve warn issues in ci files
-rw-r--r-- | .github/workflows/codeql-analysis.yml | 2 | ||||
-rw-r--r-- | .github/workflows/debug.yml | 4 | ||||
-rw-r--r-- | .github/workflows/release-deb-package.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release.yml | 6 |
4 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 39a4f7bd..512470cd 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -44,7 +44,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: submodules: recursive diff --git a/.github/workflows/debug.yml b/.github/workflows/debug.yml index 8c140121..41a31788 100644 --- a/.github/workflows/debug.yml +++ b/.github/workflows/debug.yml @@ -34,7 +34,7 @@ jobs: git config --global core.eol lf if: matrix.os == 'windows-latest' || matrix.os == 'macos-11' || matrix.os == 'macos-12' - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: recursive @@ -99,7 +99,7 @@ jobs: with: version: '6.4.2' modules: 'qt5compat' - cached: ${{ steps.cache-qt.outputs.cache-hit }} + cache: ${{ steps.cache-qt.outputs.cache-hit }} if: matrix.os == 'ubuntu-latest' || matrix.os == 'macos-11' || matrix.os == 'macos-12' - name: Set up MinGW (Windows) diff --git a/.github/workflows/release-deb-package.yml b/.github/workflows/release-deb-package.yml index 63cacb6f..55b8c095 100644 --- a/.github/workflows/release-deb-package.yml +++ b/.github/workflows/release-deb-package.yml @@ -28,7 +28,7 @@ jobs: continue-on-error: true steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: 'recursive' diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 95d0f32a..b2f3bb39 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: git config --global core.eol lf if: matrix.os == 'windows-2019' || matrix.os == 'macos-11' || matrix.os == 'macos-12' - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: submodules: recursive @@ -107,7 +107,7 @@ jobs: with: version: '6.4.2' modules: 'qt5compat' - cached: ${{ steps.cache-qt.outputs.cache-hit }} + cache: ${{ steps.cache-qt.outputs.cache-hit }} if: matrix.os == 'macos-11' || matrix.os == 'macos-12' - name: Install Dependence (macOS) @@ -156,7 +156,7 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v2 with: - cached: ${{ steps.cache-qt.outputs.cache-hit }} + cache: ${{ steps.cache-qt.outputs.cache-hit }} if: matrix.os == 'ubuntu-18.04' - name: Set up MinGW (Windows) |