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
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Expects the following environment variables to be set in the calling job step:
# - OUTPUT_NAME: the name of the output to verify
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

### Fixed

- use a more portable shebang, useful for self-hosted runners

## v1.5.0 - 2026-04-21

### Added
Expand Down
2 changes: 1 addition & 1 deletion scripts/check_reservoir_eligibility.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Group logging using the ::group:: workflow command
echo "::group::Reservoir Eligibility Check Output"
Expand Down
2 changes: 1 addition & 1 deletion scripts/config.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

# start log group
Expand Down
2 changes: 1 addition & 1 deletion scripts/detect_mathlib.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Group logging using the ::group:: workflow command
echo "::group::Detect Mathlib Output"
Expand Down
2 changes: 1 addition & 1 deletion scripts/install_elan.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

# Group logging using the ::group:: workflow command
Expand Down
2 changes: 1 addition & 1 deletion scripts/lake_build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

# start log group
Expand Down
2 changes: 1 addition & 1 deletion scripts/lake_lint.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

echo "::group::Lake Lint Output"
Expand Down
2 changes: 1 addition & 1 deletion scripts/lake_test.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

# start log group
Expand Down
2 changes: 1 addition & 1 deletion scripts/mk_all_check.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

echo "::group::mk_all Output"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_leanchecker.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -euo pipefail

echo "::group::leanchecker Output"
Expand Down
2 changes: 1 addition & 1 deletion scripts/run_nanoda.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
set -e

# Group logging using the ::group:: workflow command
Expand Down
2 changes: 1 addition & 1 deletion scripts/set_output_parameters.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash

# Group logging using the ::group:: workflow command
echo "::group::Set Output Parameters"
Expand Down
Loading