Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/reusable-python-publish_pypi_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ jobs:
name: ${{ inputs.package-name }}-pip-package-build
path: ${{ env.build-dir-path }}
- name: Publish package to Artifactory
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v3
if: ${{ matrix.virtual-repo-name != 'pypi' && matrix.virtual-repo-name != 'test-pypi' }}
with:
build-dir-path: ${{ env.build-dir-path }}
Expand All @@ -158,7 +158,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Get draft release
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v3
id: get-draft-release
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-python-publish_rattler_package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:
name: ${{ inputs.package-name }}-conda-package-build
path: build-dir
- name: Publish package to Artifactory
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v3
with:
build-dir-path: build-dir/noarch
artifactory-dir-path: ${{ matrix.publish-repo-name}}/noarch
Expand All @@ -194,7 +194,7 @@ jobs:
timeout-minutes: 5
steps:
- name: Get draft release
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v3
id: get-draft-release
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-python-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@v3
name: Setup conda env
if: ${{ inputs.package-manager == 'conda' }}
env:
Expand All @@ -107,7 +107,7 @@ jobs:
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }}
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_poetry@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_poetry@v3
name: Setup poetry env
if: ${{ inputs.package-manager == 'poetry' }}
with:
Expand All @@ -117,14 +117,14 @@ jobs:
virtual-repo-names: ${{ inputs.virtual-repo-names }}
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_hatch@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_hatch@v3
name: Setup hatch env
if: ${{ inputs.package-manager == 'hatch' }}
with:
cache-number: ${{ inputs.cache-number }}
runner-os: ${{ runner.os }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_pixi@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_pixi@v3
name: Setup pixi env
if: ${{ inputs.package-manager == 'pixi' }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-python-release_conda_assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
virtual-repo-name: ${{ fromJson(inputs.virtual-repo-names) }}
steps:
- name: Find release from tag
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v3
id: find-release
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -54,7 +54,7 @@ jobs:
cd download-assets
gh release download ${INPUTS_RELEASE_TAG} -p '*.conda'
- name: Publish package to Artifactory
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v3
with:
build-dir-path: download-assets
artifactory-dir-path: ${{ matrix.virtual-repo-name}}/noarch
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/reusable-python-release_pypi_assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
virtual-repo-name: ${{ fromJson(inputs.virtual-repo-names) }}
steps:
- name: Find release from tag
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-get_draft_release@v3
id: find-release
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -62,7 +62,7 @@ jobs:
cd download-assets
gh release download ${INPUTS_RELEASE_TAG} -p '*.tar.gz' -p '*.whl'
- name: Publish package to Artifactory
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v2
uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-publish_to_artifactory@v3
if: ${{ matrix.virtual-repo-name != 'pypi' && matrix.virtual-repo-name != 'test-pypi' }}
with:
build-dir-path: download-assets
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/reusable-python-static_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
with:
python-version: ${{inputs.python-version}}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_conda@v3
name: Setup conda env
env:
GIT_LFS_SKIP_SMUDGE: "1"
Expand All @@ -101,7 +101,7 @@ jobs:
JFROG_ARTIFACTORY_URL: ${{ secrets.JFROG_ARTIFACTORY_URL }}
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_poetry@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_poetry@v3
name: Setup poetry env
if: ${{ inputs.package-manager == 'poetry' }}
with:
Expand All @@ -111,14 +111,14 @@ jobs:
virtual-repo-names: ${{ inputs.virtual-repo-names }}
JFROG_ARTIFACTORY_TOKEN: ${{ secrets.JFROG_ARTIFACTORY_TOKEN }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_hatch@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_hatch@v3
name: Setup hatch env
if: ${{ inputs.package-manager == 'hatch' }}
with:
cache-number: ${{ inputs.cache-number }}
runner-os: ${{ runner.os }}

- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_pixi@v2
- uses: MiraGeoscience/CI-tools/.github/actions/reusable-python-setup_pixi@v3
name: Setup pixi env
if: ${{ inputs.package-manager == 'pixi' }}
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-zizmor-advanced-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
persist-credentials: false

- name: Setup Zizmor Config
uses: MiraGeoscience/CI-tools/.github/actions/setup-zizmor-config@v2
uses: MiraGeoscience/CI-tools/.github/actions/setup-zizmor-config@v3

- name: Run Zizmor Security Scan
uses: zizmorcore/zizmor-action@0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-zizmor-annotate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
persist-credentials: false

- name: Setup Zizmor Config
uses: MiraGeoscience/CI-tools/.github/actions/setup-zizmor-config@v2
uses: MiraGeoscience/CI-tools/.github/actions/setup-zizmor-config@v3

- name: Run Zizmor Security Scan
uses: zizmorcore/zizmor-action@0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-zizmor-security.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
persist-credentials: false

- name: Setup Zizmor Config
uses: MiraGeoscience/CI-tools/.github/actions/setup-zizmor-config@v2
uses: MiraGeoscience/CI-tools/.github/actions/setup-zizmor-config@v3

- name: Run Zizmor Security Scan
uses: zizmorcore/zizmor-action@0dce2577a4760a2749d8cfb7a84b7d5585ebcb7d
Expand Down
Loading