diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..50617c0 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,14 @@ +version: 2 +updates: + + # Maintain dependencies for GitHub Actions + - package-ecosystem: "github-actions" + # Workflow files stored in the default location of `.github/workflows`. (You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.) + directory: "/" + schedule: + interval: "weekly" + groups: + actions-minor: + update-types: + - minor + - patch diff --git a/.github/workflows/manualRelease.yaml b/.github/workflows/manualRelease.yaml index f98195b..d3cf2f7 100644 --- a/.github/workflows/manualRelease.yaml +++ b/.github/workflows/manualRelease.yaml @@ -18,17 +18,16 @@ on: jobs: buildAndUpload: - continue-on-error: true runs-on: ubuntu-latest steps: - id: checkoutCode name: Checkout code - uses: actions/checkout@v3 - - name: Set up Python 3.8 - uses: actions/setup-python@v4 + uses: actions/checkout@v4 + - name: Set up Python 3.11 + uses: actions/setup-python@v5 with: - python-version: 3.8 + python-version: 3.11 - name: Install dependencies run: | pip install scons markdown @@ -52,7 +51,7 @@ jobs: git config --global user.name github-actions git config --global user.email github-actions@github.com git commit -a -m "Update buildVars" - git push origin HEAD:main + git push - id: import_gpg if: ${{ inputs.signAddOn }} name: Import GPG key diff --git a/buildVars.py b/buildVars.py index b01d5ef..9534cad 100644 --- a/buildVars.py +++ b/buildVars.py @@ -19,7 +19,7 @@ # Translators: Long description to be shown for this add-on on add-on information from add-ons manager "addon_description": _("""When this add-on is installed, NVDA can report the text typed in protected controls such as passwords."""), # version - "addon_version": "11.1.0", + "addon_version": "18.0.0", # Author(s) "addon_author": u"Noelia Ruiz Martínez ", # URL for the add-on documentation support @@ -29,7 +29,7 @@ # Minimum NVDA version supported (e.g. "2018.3") "addon_minimumNVDAVersion": "2023.2", # Last NVDA version supported/tested (e.g. "2018.4", ideally more recent than minimum version) - "addon_lastTestedNVDAVersion": "2024.1.0", + "addon_lastTestedNVDAVersion": "2024.3.0", # Add-on update channel (default is stable or None) "addon_updateChannel": None, }