Skip to content

Commit

Permalink
Bump the actions group in /.github/workflows with 4 updates
Browse files Browse the repository at this point in the history
Bumps the actions group in /.github/workflows with 4 updates: [spacetelescope/notebook-ci-actions](https://github.com/spacetelescope/notebook-ci-actions), [actions/checkout](https://github.com/actions/checkout), [actions/setup-python](https://github.com/actions/setup-python) and [peaceiris/actions-gh-pages](https://github.com/peaceiris/actions-gh-pages).


Updates `spacetelescope/notebook-ci-actions` from 3 to 4
- [Commits](https://github.com/spacetelescope/notebook-ci-actions/commits/v4)

Updates `actions/checkout` from 3 to 4
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v3...v4)

Updates `actions/setup-python` from 3 to 5
- [Release notes](https://github.com/actions/setup-python/releases)
- [Commits](actions/setup-python@v3...v5)

Updates `peaceiris/actions-gh-pages` from 3 to 4
- [Release notes](https://github.com/peaceiris/actions-gh-pages/releases)
- [Changelog](https://github.com/peaceiris/actions-gh-pages/blob/main/CHANGELOG.md)
- [Commits](peaceiris/actions-gh-pages@v3...v4)

---
updated-dependencies:
- dependency-name: spacetelescope/notebook-ci-actions
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: actions/setup-python
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
- dependency-name: peaceiris/actions-gh-pages
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Oct 28, 2024
1 parent 79ffd8e commit fe32fbe
Show file tree
Hide file tree
Showing 9 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci_execute_merge_generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ on:

jobs:
GenerateHTML:
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_build_merge_manual.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_build_merge_manual.yml@v4
with:
python-version: ${{ vars.PYTHON_VERSION }}
8 changes: 4 additions & 4 deletions .github/workflows/ci_html_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
outputs:
matrix: ${{ steps.set-matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
ref: ${{ github.event.pull_request.head.sha }}
Expand All @@ -38,10 +38,10 @@ jobs:
notebook: ${{fromJson(needs.prepare_matrix.outputs.matrix)}}

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: ${{ vars.PYTHON_VERSION }}

Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
# Push the book's HTML to github-pages
- name: GitHub Pages action
uses: peaceiris/actions-gh-pages@v3
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./_build/html
2 changes: 1 addition & 1 deletion .github/workflows/ci_manual_html_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:

jobs:
GenerateHTML:
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_builder_manual_jdat.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_builder_manual_jdat.yml@v4
with:
python-version: ${{ vars.PYTHON_VERSION }}
2 changes: 1 addition & 1 deletion .github/workflows/ci_manual_single_merge_generate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
GenerateHTML:
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_build_merge_manual_single.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_build_merge_manual_single.yml@v4
with:
python-version: ${{ vars.PYTHON_VERSION }}
filename: ${{ github.event.inputs.filename }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ on:

jobs:
Scheduled:
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_scheduled.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_scheduled.yml@v4
with:
python-version: ${{ vars.PYTHON_VERSION }}
2 changes: 1 addition & 1 deletion .github/workflows/ci_security_scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ on:

jobs:
Scheduled:
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_security_scan.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/ci_security_scan.yml@v4
2 changes: 1 addition & 1 deletion .github/workflows/pep8_nb_style_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ on:

jobs:
Notebook_PEP8_Check:
uses: spacetelescope/notebook-ci-actions/.github/workflows/notebook_pep8check.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/notebook_pep8check.yml@v4
with:
python-version: ${{ vars.PYTHON_VERSION || '3.11'}}
2 changes: 1 addition & 1 deletion .github/workflows/pep8_script_style_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ on:

jobs:
Script_PEP8_Check:
uses: spacetelescope/notebook-ci-actions/.github/workflows/script_pep8check.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/script_pep8check.yml@v4
with:
python-version: ${{ vars.PYTHON_VERSION || '3.11' }}
2 changes: 1 addition & 1 deletion .github/workflows/weekly_broken_link_finder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ on:

jobs:
Scheduled:
uses: spacetelescope/notebook-ci-actions/.github/workflows/broken_link_checker.yml@v3
uses: spacetelescope/notebook-ci-actions/.github/workflows/broken_link_checker.yml@v4
with:
website_url: "https://spacetelescope.github.io/jdat_notebooks/"

0 comments on commit fe32fbe

Please sign in to comment.