Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/benchmarks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: |
scripts/ci-run-benchmarks.sh
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: |
scripts/ci-run-benchmarks.sh
Expand Down
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: |
scripts/ci-set-tag-output-parameter.sh
Expand All @@ -70,7 +70,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Run clang-format
run: |
Expand All @@ -82,7 +82,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Install cppcheck
run: |
Expand Down Expand Up @@ -114,7 +114,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Run shellcheck
run: ./scripts/ci-run-shellcheck.sh
Expand All @@ -132,7 +132,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up apt dependencies
run: |
Expand Down Expand Up @@ -276,7 +276,7 @@ jobs:
sudo gem install --no-document fpm

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: |
.fpm
Expand Down Expand Up @@ -315,7 +315,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Set up homebrew dependencies
run: brew install --quiet coreutils tree autoconf automake libtool tmux sqlite3
Expand Down Expand Up @@ -392,7 +392,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: |
scripts/ci-update-homebrew-tap.sh
Expand All @@ -412,7 +412,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Build (${{ env.AMD64_FREEBSD_GCC }})
uses: cross-platform-actions/action@v0.29.0
Expand Down Expand Up @@ -485,7 +485,7 @@ jobs:
sudo apt install -y mingw-w64

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
if: ${{ steps.cache.outputs.cache-hit != 'true' }}
with:
sparse-checkout: |
Expand Down Expand Up @@ -519,7 +519,7 @@ jobs:
sudo apt remove -y jq

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download mingw-ncurses.zip
uses: actions/download-artifact@v5
Expand Down Expand Up @@ -622,7 +622,7 @@ jobs:
tmux

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Download mingw-ncurses.zip
uses: actions/download-artifact@v5
Expand Down Expand Up @@ -669,7 +669,7 @@ jobs:
run: apk add bash gcc make musl-dev perl ncurses-dev ncurses-static tmux file sqlite curl zip wget tar git

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Build (${{ env.AMD64_LINUX_MUSL }})
env:
Expand Down Expand Up @@ -739,7 +739,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: |
Dockerfile.ci
Expand Down Expand Up @@ -803,7 +803,7 @@ jobs:
uses: mymindstorm/setup-emsdk@v14

- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Update version in index.html
run: sed "s|__VERSION__|$TAG|g" -i playground/index.html
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

steps:
- name: Checkout [${{ github.repository }}]
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/setup-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
sparse-checkout: |
setup-action
Expand Down
Loading