mirror of
https://github.com/miurahr/aqtinstall.git
synced 2025-12-18 13:14:37 +03:00
Merge pull request #954 from xavier2k6/aqt_ci_act
Some checks failed
Check tox tests / Check packaging 📦 (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / Build package (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / publish Python 🐍 distributions 📦 to PyPI (push) Has been cancelled
Test on GH actions environment / test (binary, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.0) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.1) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.7.3) (push) Has been cancelled
Some checks failed
Check tox tests / Check packaging 📦 (push) Has been cancelled
CodeQL / Analyze (python) (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / Build package (push) Has been cancelled
Publish Python 🐍 distributions 📦 to PyPI / publish Python 🐍 distributions 📦 to PyPI (push) Has been cancelled
Test on GH actions environment / test (binary, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.0) (push) Has been cancelled
Test on GH actions environment / test (standard, ubuntu-latest, 3.13, 6.8.1) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.5.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.6.3) (push) Has been cancelled
Test on GH actions environment / test (standard, windows-latest, 3.13, 6.7.3) (push) Has been cancelled
chore: Bump numerous `action` revisions
This commit is contained in:
6
.github/workflows/check.yml
vendored
6
.github/workflows/check.yml
vendored
@@ -19,12 +19,12 @@ jobs:
|
|||||||
AQT_TEST_EMAIL: ${{ secrets.AQT_TEST_EMAIL }}
|
AQT_TEST_EMAIL: ${{ secrets.AQT_TEST_EMAIL }}
|
||||||
AQT_TEST_PASSWORD: ${{ secrets.AQT_TEST_PASSWORD }}
|
AQT_TEST_PASSWORD: ${{ secrets.AQT_TEST_PASSWORD }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 20
|
fetch-depth: 20
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
- name: Set up Python 3.13
|
- name: Set up Python 3.13
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: '3.13'
|
python-version: '3.13'
|
||||||
- name: Install tools
|
- name: Install tools
|
||||||
@@ -41,7 +41,7 @@ jobs:
|
|||||||
run: coveralls --service=github
|
run: coveralls --service=github
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- uses: actions/setup-java@v4
|
- uses: actions/setup-java@v5
|
||||||
if: ( github.event_name == 'push' ) && ( github.ref == 'refs/heads/master' )
|
if: ( github.event_name == 'push' ) && ( github.ref == 'refs/heads/master' )
|
||||||
with:
|
with:
|
||||||
distribution: 'temurin'
|
distribution: 'temurin'
|
||||||
|
|||||||
6
.github/workflows/codeql-analysis.yml
vendored
6
.github/workflows/codeql-analysis.yml
vendored
@@ -28,12 +28,12 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
|
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v3
|
uses: github/codeql-action/init@v4
|
||||||
with:
|
with:
|
||||||
languages: ${{ matrix.language }}
|
languages: ${{ matrix.language }}
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v3
|
uses: github/codeql-action/analyze@v4
|
||||||
|
|||||||
8
.github/workflows/publish-to-pypi.yml
vendored
8
.github/workflows/publish-to-pypi.yml
vendored
@@ -15,13 +15,13 @@ jobs:
|
|||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout 🛎️
|
- name: Checkout 🛎️
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 50
|
fetch-depth: 50
|
||||||
- name: Fetch release tag
|
- name: Fetch release tag
|
||||||
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
||||||
- name: Set up Python 3.13🐍
|
- name: Set up Python 3.13🐍
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: '3.13'
|
python-version: '3.13'
|
||||||
- name: Install build and twine
|
- name: Install build and twine
|
||||||
@@ -31,7 +31,7 @@ jobs:
|
|||||||
- name: twine check
|
- name: twine check
|
||||||
run: python -m twine check dist/*
|
run: python -m twine check dist/*
|
||||||
- name: upload dist artifacts
|
- name: upload dist artifacts
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v5
|
||||||
with:
|
with:
|
||||||
name: dists
|
name: dists
|
||||||
path: dist/
|
path: dist/
|
||||||
@@ -44,7 +44,7 @@ jobs:
|
|||||||
id-token: write
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: download dist artifacts
|
- name: download dist artifacts
|
||||||
uses: actions/download-artifact@v4
|
uses: actions/download-artifact@v6
|
||||||
with:
|
with:
|
||||||
name: dists
|
name: dists
|
||||||
path: dist/
|
path: dist/
|
||||||
|
|||||||
10
.github/workflows/run-linter.yml
vendored
10
.github/workflows/run-linter.yml
vendored
@@ -16,14 +16,14 @@ jobs:
|
|||||||
permissions:
|
permissions:
|
||||||
pull-requests: write
|
pull-requests: write
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- name: Setup python
|
- name: Setup python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: '3.13'
|
python-version: '3.13'
|
||||||
architecture: x64
|
architecture: x64
|
||||||
- name: Setup reviewdog
|
- name: Setup reviewdog
|
||||||
uses: reviewdog/action-setup@e04ffabe3898a0af8d0fb1af00c188831c4b5893 # v1.3.2
|
uses: reviewdog/action-setup@d8a7baabd7f3e8544ee4dbde3ee41d0011c3a93f # v1.5.0
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
pip install -U pip tox wheel setuptools coveralls coverage[toml]
|
pip install -U pip tox wheel setuptools coveralls coverage[toml]
|
||||||
@@ -38,9 +38,9 @@ jobs:
|
|||||||
name: Document checks
|
name: Document checks
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
- name: Setup python
|
- name: Setup python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: '3.13'
|
python-version: '3.13'
|
||||||
architecture: x64
|
architecture: x64
|
||||||
|
|||||||
6
.github/workflows/test-install-qt.yml
vendored
6
.github/workflows/test-install-qt.yml
vendored
@@ -37,12 +37,12 @@ jobs:
|
|||||||
qtver: 6.8.1
|
qtver: 6.8.1
|
||||||
artifact: standard
|
artifact: standard
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 20
|
fetch-depth: 20
|
||||||
fetch-tags: true
|
fetch-tags: true
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.py }}
|
python-version: ${{ matrix.py }}
|
||||||
- name: Build and install
|
- name: Build and install
|
||||||
@@ -187,7 +187,7 @@ jobs:
|
|||||||
print('QT_INATALL_PREFIX {}\nExpected path {}'.format(result, expected_path))
|
print('QT_INATALL_PREFIX {}\nExpected path {}'.format(result, expected_path))
|
||||||
shell: python
|
shell: python
|
||||||
working-directory: ${{ github.workspace }}
|
working-directory: ${{ github.workspace }}
|
||||||
- uses: actions/upload-artifact@v4
|
- uses: actions/upload-artifact@v5
|
||||||
if: matrix.artifact == 'binary'
|
if: matrix.artifact == 'binary'
|
||||||
with:
|
with:
|
||||||
name: aqt-${{ matrix.os }}-standalone
|
name: aqt-${{ matrix.os }}-standalone
|
||||||
|
|||||||
12
.github/workflows/upload-release-artifacts.yml
vendored
12
.github/workflows/upload-release-artifacts.yml
vendored
@@ -27,12 +27,12 @@ jobs:
|
|||||||
run:
|
run:
|
||||||
shell: ${{ startsWith(matrix.system.os, 'windows-') && 'pwsh' || 'bash' }} {0}
|
shell: ${{ startsWith(matrix.system.os, 'windows-') && 'pwsh' || 'bash' }} {0}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v6
|
||||||
with:
|
with:
|
||||||
fetch-depth: 20
|
fetch-depth: 20
|
||||||
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
- run: git fetch --depth=1 origin +refs/tags/*:refs/tags/*
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v6
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.py }}
|
python-version: ${{ matrix.py }}
|
||||||
architecture: ${{ matrix.system.arch }}
|
architecture: ${{ matrix.system.arch }}
|
||||||
@@ -47,7 +47,7 @@ jobs:
|
|||||||
${{ startsWith(matrix.system.os, 'windows-') && 'Remove-Item venv -Recurse -Force' || 'rm -rf venv' }}
|
${{ startsWith(matrix.system.os, 'windows-') && 'Remove-Item venv -Recurse -Force' || 'rm -rf venv' }}
|
||||||
|
|
||||||
- name: Upload to Release
|
- name: Upload to Release
|
||||||
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2
|
uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 #v2.11.3
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
file: dist/${{ matrix.system.output_file }}
|
file: dist/${{ matrix.system.output_file }}
|
||||||
@@ -56,7 +56,7 @@ jobs:
|
|||||||
overwrite: true
|
overwrite: true
|
||||||
if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
||||||
- name: Upload to Release for all architectures
|
- name: Upload to Release for all architectures
|
||||||
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2
|
uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 #v2.11.3
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
file: dist/${{ matrix.system.output_file }}
|
file: dist/${{ matrix.system.output_file }}
|
||||||
@@ -65,7 +65,7 @@ jobs:
|
|||||||
overwrite: true
|
overwrite: true
|
||||||
if: matrix.system.secondary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
if: matrix.system.secondary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
||||||
- name: Update continuous build
|
- name: Update continuous build
|
||||||
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2
|
uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 #v2.11.3
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
overwrite: true
|
overwrite: true
|
||||||
@@ -75,7 +75,7 @@ jobs:
|
|||||||
asset_name: ${{ matrix.system.primary_artifact }}
|
asset_name: ${{ matrix.system.primary_artifact }}
|
||||||
if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
if: matrix.system.primary_artifact!='' && startsWith(github.ref, 'refs/tags/v')
|
||||||
- name: Update continuous build for all architectures
|
- name: Update continuous build for all architectures
|
||||||
uses: svenstaro/upload-release-action@81c65b7cd4de9b2570615ce3aad67a41de5b1a13 #v2.11.2
|
uses: svenstaro/upload-release-action@6b7fa9f267e90b50a19fef07b3596790bb941741 #v2.11.3
|
||||||
with:
|
with:
|
||||||
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
overwrite: true
|
overwrite: true
|
||||||
|
|||||||
Reference in New Issue
Block a user