Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: Another attempt to fix dependabot failure to resolve "Slicer/jinja2-action" version #299

Merged
merged 2 commits into from
Jan 8, 2025
Merged
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
3 changes: 0 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,3 @@ updates:
commit-message:
# Prefix all commit messages with "ci: "
prefix: "ci"
ignore:
# Ignore "Slicer/jinja2-action" expected to be manually updated
- dependency-name: "Slicer/jinja2-action"
8 changes: 4 additions & 4 deletions .github/workflows/build-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,31 +94,31 @@ jobs:

- name: 'Evaluate download template [release_and_nightly]'
if: env.deploy_download_preview == 'true'
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # slicer-2023-11-09-2ea7da6
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # see branch "slicer-2023-11-09-2ea7da6"
with:
template: _site/download.html
data_file: _data/template_test_data/download_release_and_nightly.json
output_file: _site/download_release_and_nightly.html

- name: 'Evaluate download template [only_release]'
if: env.deploy_download_preview == 'true'
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # slicer-2023-11-09-2ea7da6
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # see branch "slicer-2023-11-09-2ea7da6"
with:
template: _site/download.html
data_file: _data/template_test_data/download_only_release.json
output_file: _site/download_only_release.html

- name: 'Evaluate download template [only_nightly]'
if: env.deploy_download_preview == 'true'
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # slicer-2023-11-09-2ea7da6
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # see branch "slicer-2023-11-09-2ea7da6"
with:
template: _site/download.html
data_file: _data/template_test_data/download_only_nightly.json
output_file: _site/download_only_nightly.html

- name: 'Evaluate download template [incomplete_releases]'
if: env.deploy_download_preview == 'true'
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # slicer-2023-11-09-2ea7da6
uses: Slicer/jinja2-action@d94dd73f31971ae95cb4cfee57236618c65ccb7f # see branch "slicer-2023-11-09-2ea7da6"
with:
template: _site/download.html
data_file: _data/template_test_data/download_incomplete_releases.json
Expand Down
Loading