Skip to content

Commit

Permalink
Target branch
Browse files Browse the repository at this point in the history
  • Loading branch information
liamhuber committed Jul 23, 2024
1 parent 606379c commit 501ee03
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@main
- uses: pyiron/actions/update-env-files@v3.2.1
- 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@main
uses: pyiron/actions/.github/workflows/tests-and-coverage.yml@v3.2.1
secrets: inherit

code-ql:
if: contains(github.event.pull_request.labels.*.name, 'run_CodeQL')
uses: pyiron/actions/.github/workflows/codeql.yml@main
uses: pyiron/actions/.github/workflows/codeql.yml@v3.2.1
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 @@ -182,11 +182,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@main
- uses: pyiron/actions/write-docs-env@v3.2.1
with:
env-files: ${{ inputs.docs-env-files }}
if: ${{ inputs.do-commit-updated-env }}
- uses: pyiron/actions/write-environment@main
- uses: pyiron/actions/write-environment@v3.2.1
with:
env-files: ${{ inputs.notebooks-env-files }}
output-env-file: .binder/environment.yml
Expand All @@ -213,7 +213,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/build-docs@main
- uses: pyiron/actions/build-docs@v3.2.1
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.docs-env-files }}
Expand All @@ -224,7 +224,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/build-notebooks@main
- uses: pyiron/actions/build-notebooks@v3.2.1
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.notebooks-env-files }}
Expand Down Expand Up @@ -261,11 +261,11 @@ jobs:

steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/add-to-python-path@main
- uses: pyiron/actions/add-to-python-path@v3.2.1
if: inputs.extra-python-paths != ''
with:
path-dirs: ${{ inputs.extra-python-paths }}
- uses: pyiron/actions/unit-tests@main
- uses: pyiron/actions/unit-tests@v3.2.1
with:
python-version: ${{ matrix.python-version }}
env-files: ${{ inputs.tests-env-files }}
Expand All @@ -276,7 +276,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@main
uses: pyiron/actions/.github/workflows/tests-and-coverage.yml@v3.2.1
secrets: inherit
with:
tests-env-files: ${{ inputs.tests-env-files }}
Expand All @@ -295,7 +295,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/unit-tests@main
- uses: pyiron/actions/unit-tests@v3.2.1
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.tests-env-files }}
Expand All @@ -308,11 +308,11 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/add-to-python-path@main
- uses: pyiron/actions/add-to-python-path@v3.2.1
if: inputs.extra-python-paths != ''
with:
path-dirs: ${{ inputs.extra-python-paths }}
- uses: pyiron/actions/unit-tests@main
- uses: pyiron/actions/unit-tests@v3.2.1
with:
python-version: ${{ inputs.alternate-tests-python-version }}
env-files: ${{ inputs.alternate-tests-env-files }}
Expand All @@ -326,7 +326,7 @@ jobs:
runs-on: ${{ inputs.runner }}
steps:
- uses: actions/checkout@v4
- uses: pyiron/actions/pip-check@main
- uses: pyiron/actions/pip-check@v3.2.1
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@main
- uses: pyiron/actions/cached-miniforge@v3.2.1
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.env-files }}
- uses: pyiron/actions/update-pyproject-dependencies@main
- uses: pyiron/actions/update-pyproject-dependencies@v3.2.1
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@main
- uses: pyiron/actions/add-to-python-path@v3.2.1
if: inputs.extra-python-paths != ''
with:
path-dirs: ${{ inputs.extra-python-paths }}
- uses: pyiron/actions/unit-tests@main
- uses: pyiron/actions/unit-tests@v3.2.1
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@main
uses: pyiron/actions/.github/workflows/push-pull.yml@v3.2.1
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@main
- uses: pyiron/actions/cached-miniforge@v3.2.1
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.standard-docs-env-file }} ${{ inputs.env-files }}
- uses: pyiron/actions/pyiron-config@main
- uses: pyiron/actions/pyiron-config@v3.2.1
- 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 @@ -24,11 +24,11 @@ inputs:
runs:
using: 'composite'
steps:
- uses: pyiron/actions/cached-miniforge@main
- uses: pyiron/actions/cached-miniforge@v3.2.1
with:
python-version: ${{ inputs.python-version }}
env-files: ${{ inputs.standard-notebooks-env-file }} ${{ inputs.env-files }}
- uses: pyiron/actions/pyiron-config@main
- uses: pyiron/actions/pyiron-config@v3.2.1
- name: Build notebooks
shell: bash -l {0}
run: $GITHUB_ACTION_PATH/../.support/build_notebooks.sh ${{ inputs.notebooks-dir }} ${{ inputs.exclusion-file }}
2 changes: 1 addition & 1 deletion cached-miniforge/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: pyiron/actions/write-environment@main
- uses: pyiron/actions/write-environment@v3.2.1
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@main
- uses: pyiron/actions/cached-miniforge@v3.2.1
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@main
- uses: pyiron/actions/cached-miniforge@v3.2.1
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@main
- uses: pyiron/actions/pyiron-config@v3.2.1
- name: Test
shell: bash -l {0}
run: |
Expand Down

0 comments on commit 501ee03

Please sign in to comment.