diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 5990d9c..887dca8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,11 +1,21 @@ # To get started with Dependabot version updates, you'll need to specify which # package ecosystems to update and where the package manifests are located. # Please see the documentation for all configuration options: -# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file +# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates version: 2 updates: - - package-ecosystem: "" # See documentation for possible values - directory: "/" # Location of package manifests + - package-ecosystem: "github-actions" + directory: "/" schedule: interval: "weekly" + cooldown: + default-days: 4 + groups: + github-actions: + patterns: + - actions/* + mirageo-ci-tools: + patterns: + - MiraGeoscience/CI-tools/.github/actions/* + - MiraGeoscience/CI-tools/.github/workflows/* diff --git a/.github/workflows/issue_to_jira.yml b/.github/workflows/issue_to_jira.yml index ee6f8d5..7765352 100644 --- a/.github/workflows/issue_to_jira.yml +++ b/.github/workflows/issue_to_jira.yml @@ -6,7 +6,12 @@ on: jobs: call-workflow-create-jira-issue: - uses: MiraGeoscience/CI-tools/.github/workflows/reusable-jira-issue_to_jira.yml@v1.0.0 - secrets: inherit + uses: MiraGeoscience/CI-tools/.github/workflows/reusable-jira-issue_to_jira.yml@v3 + permissions: + issues: write + secrets: + JIRA_BASE_URL: ${{ secrets.JIRA_BASE_URL }} + JIRA_USER_EMAIL: ${{ secrets.JIRA_USER_EMAIL_WRITE }} + JIRA_API_TOKEN: ${{ secrets.JIRA_API_TOKEN_WRITE }} with: project_key: 'GEOPY' diff --git a/.github/workflows/python_analysis.yml b/.github/workflows/python_analysis.yml index 0aecba6..0502b2e 100644 --- a/.github/workflows/python_analysis.yml +++ b/.github/workflows/python_analysis.yml @@ -24,14 +24,14 @@ concurrency: jobs: call-workflow-static-analysis: name: Static analysis - uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-static_analysis.yml@main + uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-static_analysis.yml@v3 with: package-manager: 'poetry' app-name: 'mirageoscience' python-version: '3.10' call-workflow-pytest: name: Pytest - uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest.yml@main + uses: MiraGeoscience/CI-tools/.github/workflows/reusable-python-pytest.yml@v3 with: package-manager: 'poetry' python-versions: '["3.10", "3.11", "3.12"]'