Skip to content

Commit

Permalink
Bump the github-actions group with 3 updates (#740)
Browse files Browse the repository at this point in the history
* Bump the github-actions group with 3 updates

Bumps the github-actions group with 3 updates: [n1hility/cancel-previous-runs](https://github.com/n1hility/cancel-previous-runs), [actions/checkout](https://github.com/actions/checkout) and [actions/setup-python](https://github.com/actions/setup-python).


Updates `n1hility/cancel-previous-runs` from 2.0 to 3.0
- [Release notes](https://github.com/n1hility/cancel-previous-runs/releases)
- [Commits](n1hility/cancel-previous-runs@v2.0...v3.0)

Updates `actions/checkout` from 2 to 4
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v2...v4)

Updates `actions/setup-python` from 2 to 4
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v2...v4)

---
updated-dependencies:
- dependency-name: n1hility/cancel-previous-runs
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix for Centos 7

Checkout V4 requires GLIBC2.27, that is unavailable in Centos 7

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: iakov <iakov@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and iakov committed Nov 19, 2023
1 parent 0a4ad77 commit 8adad20
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/centos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,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
6 changes: 3 additions & 3 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 @@ -87,7 +87,7 @@ jobs:

# After Qt install action, that spoils pythonLocation variable
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: 'x86'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/trik-toolchain.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 8adad20

Please sign in to comment.