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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
name: ShellCheck Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install ShellCheck
run: sudo apt-get update && sudo apt-get install -y shellcheck
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Run main test suite
run: bash test_lofetch.sh 2>&1 | tee test-output.log
Expand Down Expand Up @@ -123,7 +123,7 @@ jobs:
container:
image: bash:${{ matrix.bash-version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Install test dependencies
run: |
Expand All @@ -143,7 +143,7 @@ jobs:
name: Version Consistency
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Check version parity across files
run: |
Expand Down Expand Up @@ -177,7 +177,7 @@ jobs:
name: Secret Scan
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Run test suite
run: bash test_lofetch.sh
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7

- name: Setup Node.js
uses: actions/setup-node@v4
Expand All @@ -75,7 +75,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v7
with:
fetch-depth: 0

Expand Down
Loading