Skip to content

Commit a59d1d9

Browse files
authored
Replace deprecated action (#59)
1 parent 3e14e89 commit a59d1d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build_pass.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: check fcitx5-cskk version
1818
id: version
1919
run: |
20-
echo ::set-output name=version::`bin/version.sh`
20+
echo version=`bin/version.sh` >> ${GITHUB_OUTPUT}
2121
- name: check cskk version
2222
id: cskk_version
2323
run: |
24-
echo ::set-output name=cskk_version::`bin/cskk_version.sh`
24+
echo cskk_version=`bin/cskk_version.sh` >> ${GITHUB_OUTPUT}
2525
- name: Download & install libcskk
2626
run: |
2727
wget https://github.com/naokiri/cskk/releases/download/v${{ steps.cskk_version.outputs.cskk_version }}/libcskk_${{ steps.cskk_version.outputs.cskk_version }}_amd64.deb

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ jobs:
1717
- name: check fcitx5-cskk version
1818
id: version
1919
run: |
20-
echo ::set-output name=version::`bin/version.sh`
20+
echo version=`bin/version.sh` >> ${GITHUB_OUTPUT}
2121
- name: check cskk version
2222
id: cskk_version
2323
run: |
24-
echo ::set-output name=cskk_version::`bin/cskk_version.sh`
24+
echo cskk_version=`bin/cskk_version.sh` >> ${GITHUB_OUTPUT}
2525
- name: check fcitx5-cskk version exists in metainfo
2626
run: |
2727
bin/metainfo_version.sh

0 commit comments

Comments
 (0)