Skip to content

Commit

Permalink
github: update versions of GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
akinomyoga committed Mar 11, 2024
1 parent 18dd51a commit 0c42c8b
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 33 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build
Expand All @@ -27,7 +27,7 @@ jobs:
mv "ble-${{ env.blesh_build_pkgver }}" ble-nightly
tar -cJf ble-nightly.tar.xz ble-nightly
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
files: |
ble-nightly.tar.xz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Check out
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install dependencies
Expand Down
3 changes: 2 additions & 1 deletion docs/ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
- main: fix issues in MSYS1 `#D2163` 5f0b88fb
- util: work around bash-3.1 bug that `10>&-` fails to close the fd `#D2164` b5938192
- decode: fix the problem that key always timed out in bash-3 `#D2173` 0b176e76
- term: adjust the result of `tput clear` for `ncurses >= 6.1` (reported by cmndrsp0ck) `#D2185`
- term: adjust the result of `tput clear` for `ncurses >= 6.1` (reported by cmndrsp0ck) `#D2185` 18dd51ab

## Contrib

Expand Down Expand Up @@ -156,6 +156,7 @@
- test(vi): fix broken states after test `#D2123` 06ad3a6c
- test(bash): fix test cases for history expansion `#D2131` 838b4652
- test(bash): add tests for bash array bugs `#D2149` 6154d71c
- github/workflows: update versions of GitHub Actions `#D2186` xxxxxxxx

## Internal changes

Expand Down
60 changes: 31 additions & 29 deletions note.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1977,35 +1977,6 @@ bash_tips
その場合には複雑な bash の振る舞いを調べて模倣する必要があるが其処までする
意味があるかは分からない。

2024-02-13

* github: Node.js 20 に伴う action 更新
https://github.com/akinomyoga/ble.sh/actions/runs/7883231577

テストを覗いたら警告が出ている。checkout@v3 については checkout@v4 にすれば
良いらしい。softprops/action-gh-release@v1 に関しては repository に見に行っ
たら丁度先週 node20 に切り替えた所らしく、しかし v1 は v1 のままである。

https://github.com/softprops/action-gh-release

Issue を見てみたら報告が3日前にある。

https://github.com/softprops/action-gh-release/issues/410

一方で merge された側では @v2 にしたらいいとか何とか maintainer が言ってい
て、然しそう言いながら何もしていない。それより寧ろ commit id を使う事を提案
している。謎だ。

https://github.com/softprops/action-gh-release/pull/406

と思ってまた読んだら、maintainer は softprops で、言っている人は自身が
action owner と言っている。何れにしてもよく分からないが、softprops が何かを
しなければならない。別に softprops は inactive という訳ではない。上記 #406
を merge したのは他ならぬ softprops である。

うーん。これは動きがあるまで暫くは凍結の気がする。返信があった。解雇されて
色々と大変だそうだ。これは待つことにする。

2024-02-08

* history: command history 以外についても永続的な履歴が欲しい気がする。state
Expand Down Expand Up @@ -7367,6 +7338,37 @@ bash_tips
Done (実装ログ)
-------------------------------------------------------------------------------

2024-03-10

* 2024-02-13 github: Node.js 20 に伴う action 更新 [#D2186]
https://github.com/akinomyoga/ble.sh/actions/runs/7883231577

テストを覗いたら警告が出ている。checkout@v3 については checkout@v4 にすれば
良いらしい。softprops/action-gh-release@v1 に関しては repository に見に行っ
たら丁度先週 node20 に切り替えた所らしく、しかし v1 は v1 のままである。

https://github.com/softprops/action-gh-release

Issue を見てみたら報告が3日前にある。

https://github.com/softprops/action-gh-release/issues/410

一方で merge された側では @v2 にしたらいいとか何とか maintainer が言ってい
て、然しそう言いながら何もしていない。それより寧ろ commit id を使う事を提案
している。謎だ。

https://github.com/softprops/action-gh-release/pull/406

と思ってまた読んだら、maintainer は softprops で、言っている人は自身が
action owner と言っている。何れにしてもよく分からないが、softprops が何かを
しなければならない。別に softprops は inactive という訳ではない。上記 #406
を merge したのは他ならぬ softprops である。

うーん。これは動きがあるまで暫くは凍結の気がする。返信があった。解雇されて
色々と大変だそうだ。これは待つことにする。

どうやらタグがついた様なので GitHub Action を更新する事にする。

2024-03-04

* edit: C-l 及び clear が効かなくなる (reported by cmndrsp0ck) [#D2185]
Expand Down

0 comments on commit 0c42c8b

Please sign in to comment.