Skip to content

Commit

Permalink
Merge pull request #133 from pyiron/v3.3.2
Browse files Browse the repository at this point in the history
run update_actions_tag.sh
  • Loading branch information
mbruns91 authored Oct 15, 2024
2 parents 72e1239 + 6c6dcac commit 9d25e72
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
ref: ${{ github.event.pull_request.head.ref }} # Check out the head of the actual branch, not the PR
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
token: ${{ secrets.DEPENDABOT_WORKFLOW_TOKEN }}
- uses: pyiron/actions/update-env-files@forge-variant
- uses: pyiron/actions/update-env-files@v3.3.2
- name: UpdateDependabotPR commit
run: |
git config --local user.email "[email protected]"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-labeled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@ jobs:

tests-and-coverage:
if: contains(github.event.pull_request.labels.*.name, 'run_coverage')
uses: pyiron/actions/.github/workflows/tests-and-coverage.yml@forge-variant
uses: pyiron/actions/.github/workflows/tests-and-coverage.yml@v3.3.2
secrets: inherit

code-ql:
if: contains(github.event.pull_request.labels.*.name, 'run_CodeQL')
uses: pyiron/actions/.github/workflows/codeql.yml@forge-variant
uses: pyiron/actions/.github/workflows/codeql.yml@v3.3.2
secrets: inherit
22 changes: 11 additions & 11 deletions .github/workflows/push-pull.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,11 +187,11 @@ jobs:
ref: ${{ github.event.pull_request.head.ref }} # Check out the head of the actual branch, not the PR
fetch-depth: 0 # otherwise, you will fail to push refs to dest repo
if: ${{ inputs.do-commit-updated-env }}
- uses: pyiron/actions/write-docs-env@forge-variant
- uses: pyiron/actions/write-docs-env@v3.3.2
with:
env-files: ${{ inputs.docs-env-files }}
if: ${{ inputs.do-commit-updated-env }}
- uses: pyiron/actions/write-environment@forge-variant
- uses: pyiron/actions/write-environment@v3.3.2
with:
env-files: ${{ inputs.notebooks-env-files }}
output-env-file: .binder/environment.yml
Expand All @@ -218,7 +218,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/build-docs@forge-variant
- uses: pyiron/actions/build-docs@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.docs-env-files }}
Expand All @@ -229,7 +229,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/build-notebooks@forge-variant
- uses: pyiron/actions/build-notebooks@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.notebooks-env-files }}
Expand Down Expand Up @@ -266,11 +266,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/add-to-python-path@forge-variant
- uses: pyiron/actions/add-to-python-path@v3.3.2
if: inputs.extra-python-paths != ''
with:
path-dirs: ${{ inputs.extra-python-paths }}
- uses: pyiron/actions/unit-tests@forge-variant
- uses: pyiron/actions/unit-tests@v3.3.2
with:
python-version: ${{ matrix.python-version }}
env-files: ${{ inputs.tests-env-files }}
Expand All @@ -281,7 +281,7 @@ jobs:
coveralls-and-codacy:
needs: commit-updated-env
if: ${{ inputs.do-coveralls || inputs.do-codacy }}
uses: pyiron/actions/.github/workflows/tests-and-coverage.yml@forge-variant
uses: pyiron/actions/.github/workflows/tests-and-coverage.yml@v3.3.2
secrets: inherit
with:
tests-env-files: ${{ inputs.tests-env-files }}
Expand All @@ -300,7 +300,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/unit-tests@forge-variant
- uses: pyiron/actions/unit-tests@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.tests-env-files }}
Expand All @@ -313,11 +313,11 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/add-to-python-path@forge-variant
- uses: pyiron/actions/add-to-python-path@v3.3.2
if: inputs.extra-python-paths != ''
with:
path-dirs: ${{ inputs.extra-python-paths }}
- uses: pyiron/actions/unit-tests@forge-variant
- uses: pyiron/actions/unit-tests@v3.3.2
with:
python-version: ${{ inputs.alternate-tests-python-version }}
env-files: ${{ inputs.alternate-tests-env-files }}
Expand All @@ -331,7 +331,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/pip-check@forge-variant
- uses: pyiron/actions/pip-check@v3.3.2
with:
python-version: ${{ inputs.python-version }}

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pyproject-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/cached-miniforge@forge-variant
- uses: pyiron/actions/cached-miniforge@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.env-files }}
- uses: pyiron/actions/update-pyproject-dependencies@forge-variant
- uses: pyiron/actions/update-pyproject-dependencies@v3.3.2
with:
input-toml: ${{ inputs.input-toml }}
lower-bound-yaml: ${{ inputs.lower-bound-yaml }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests-and-coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/add-to-python-path@forge-variant
- uses: pyiron/actions/add-to-python-path@v3.3.2
if: inputs.extra-python-paths != ''
with:
path-dirs: ${{ inputs.extra-python-paths }}
- uses: pyiron/actions/unit-tests@forge-variant
- uses: pyiron/actions/unit-tests@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.tests-env-files }}
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ on:

jobs:
pyiron:
uses: pyiron/actions/.github/workflows/push-pull.yml@forge-variant
uses: pyiron/actions/.github/workflows/push-pull.yml@v3.3.2
secrets: inherit
```
Expand Down
4 changes: 2 additions & 2 deletions build-docs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ inputs:
runs:
using: 'composite'
steps:
- uses: pyiron/actions/cached-miniforge@forge-variant
- uses: pyiron/actions/cached-miniforge@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.standard-docs-env-file }} ${{ inputs.env-files }}
- uses: pyiron/actions/pyiron-config@forge-variant
- uses: pyiron/actions/pyiron-config@v3.3.2
- name: Build sphinx documentation
shell: bash -l {0}
run: |
Expand Down
4 changes: 2 additions & 2 deletions build-notebooks/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ inputs:
runs:
using: 'composite'
steps:
- uses: pyiron/actions/cached-miniforge@forge-variant
- uses: pyiron/actions/cached-miniforge@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.standard-notebooks-env-file }} ${{ inputs.env-files }}
- uses: pyiron/actions/pyiron-config@forge-variant
- uses: pyiron/actions/pyiron-config@v3.3.2
- name: Build notebooks
shell: bash -l {0}
run: $GITHUB_ACTION_PATH/../.support/build_notebooks.sh ${{ inputs.notebooks-dir }} ${{ inputs.exclusion-file }} ${{ inputs.kernel }}
2 changes: 1 addition & 1 deletion cached-miniforge/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: pyiron/actions/write-environment@forge-variant
- uses: pyiron/actions/write-environment@v3.3.2
with:
env-files: ${{ inputs.env-files }}
- name: Env name backwards compatibility patch
Expand Down
2 changes: 1 addition & 1 deletion pip-check/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ inputs:
runs:
using: 'composite'
steps:
- uses: pyiron/actions/cached-miniforge@forge-variant
- uses: pyiron/actions/cached-miniforge@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.env-files }}
Expand Down
4 changes: 2 additions & 2 deletions unit-tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ inputs:
runs:
using: 'composite'
steps:
- uses: pyiron/actions/cached-miniforge@forge-variant
- uses: pyiron/actions/cached-miniforge@v3.3.2
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.standard-unittests-env-file }} ${{ inputs.coveralls-codacy-env-file }} ${{ inputs.env-files }}
- uses: pyiron/actions/pyiron-config@forge-variant
- uses: pyiron/actions/pyiron-config@v3.3.2
- name: Test
shell: bash -l {0}
run: |
Expand Down

0 comments on commit 9d25e72

Please sign in to comment.