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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
name: ShellCheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install ShellCheck
run: sudo apt-get install -y shellcheck
- name: Lint all scripts
Expand All @@ -35,15 +35,15 @@ jobs:
matrix:
shell: [bash, zsh]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Run tests
run: ${{ matrix.shell }} test.sh

test-linux:
name: Test Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install libnotify
run: sudo apt-get install -y libnotify-bin
- name: Run tests
Expand All @@ -53,7 +53,7 @@ jobs:
name: Test make install round-trip
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install
run: make install PREFIX=/tmp/shelldone-test
- name: Verify version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-choco.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Pack and push to Chocolatey
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Verify version matches nuspec
shell: pwsh
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
name: Create GitHub Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Extract version from tag
id: version
Expand Down Expand Up @@ -101,7 +101,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ !contains(github.ref, '-') }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Extract version from tag
id: version
Expand All @@ -115,7 +115,7 @@ jobs:
echo "SHA256=$(sha256sum tarball.tar.gz | cut -d' ' -f1)" >> "$GITHUB_OUTPUT"

- name: Update Homebrew formula
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: nareshnavinash/homebrew-tap
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ !contains(github.ref, '-') }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Extract version from tag
id: version
Expand All @@ -205,7 +205,7 @@ jobs:
echo "SHA256=$(sha256sum tarball.tar.gz | cut -d' ' -f1)" >> "$GITHUB_OUTPUT"

- name: Checkout Scoop bucket
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: nareshnavinash/scoop-bucket
token: ${{ secrets.HOMEBREW_TAP_TOKEN }}
Expand Down Expand Up @@ -281,7 +281,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout gh-pages
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: gh-pages
path: gh-pages
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
needs: release
runs-on: windows-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Pack and push
if: ${{ env.CHOCO_API_KEY != '' }}
Expand Down
Loading