Skip to content

Commit

Permalink
Modify CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kleo-53 committed Feb 3, 2024
1 parent c198bb5 commit 368134d
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 12 deletions.
16 changes: 13 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ updates:
directory: "/"
schedule:
interval: monthly
time: "23:59"
timezone: Europe/Moscow
open-pull-requests-limit: 99
reviewers:
- iakov
assignees:
Expand All @@ -15,3 +12,16 @@ updates:
submodules:
patterns:
- "*" # All submodules updates

- package-ecosystem: github-actions
directory: "/"
schedule:
interval: monthly
reviewers:
- iakov
assignees:
- iakov
groups:
github-actions:
patterns:
- "*" # All submodules updates
6 changes: 4 additions & 2 deletions .github/workflows/centos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,10 @@ name: 'No Python on CentOS 7'
on:
push:
branches:
- '**'
pull_request:
branches:
- '**'
workflow_dispatch:

jobs:
Expand All @@ -23,7 +25,7 @@ jobs:
steps:

- name: Cancel Previous Workflow Runs
uses: n1hility/cancel-previous-runs@v2.0
uses: n1hility/cancel-previous-runs@v3.0
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand Down Expand Up @@ -68,7 +70,7 @@ jobs:
echo "${Qt5_Dir}/bin" >> $GITHUB_PATH
- name: Use ccache
uses: hendrikmuhs/[email protected]
uses: hendrikmuhs/[email protected].11

- name: Check available tools
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
steps:

- name: Cancel Previous Workflow Runs
uses: n1hility/cancel-previous-runs@v2.0
uses: n1hility/cancel-previous-runs@v3.0
with:
token: ${{ secrets.GITHUB_TOKEN }}

Expand All @@ -37,7 +37,7 @@ jobs:
git config --global core.symlinks true
git config --global core.autocrlf true
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 1
Expand Down Expand Up @@ -81,13 +81,13 @@ jobs:
version: ${{matrix.qt-version}}
arch: win32_mingw${{matrix.mingw-short-version}}
modules: 'qtscript'
archives: 'qtbase qtsvg qtserialport qtmultimedia qtwinextras qtimageformats i686'
archives: 'qtbase qtsvg qtserialport qtmultimedia qtwinextras qtimageformats i686 qttools'
tools: 'tools_mingw,qt.tools.win32_mingw${{matrix.mingw-short-version}}0'
extra: '--external 7z'

# After Qt install action, that spoils pythonLocation variable
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: 'x86'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/trik-toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Restore TRIK toolchain
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: /opt/trik-sdk
key: trik-sdk
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Save TRIK toolchain
if: steps.trik-toolchain-check.outputs.install == 'true'
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: /opt/trik-sdk
key: trik-sdk
Expand All @@ -67,7 +67,7 @@ jobs:
echo "PERL5LIB=$PERL5LIB" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1
submodules: recursive
Expand Down

0 comments on commit 368134d

Please sign in to comment.