Skip to content

Commit

Permalink
set-output および save-state を使用しないようにする (#14)
Browse files Browse the repository at this point in the history
* use GITHUB_OUTPUT instead of set-output

* update rust-cache

* remove macos-10.15

---------

Co-authored-by: Hiroshiba <[email protected]>
  • Loading branch information
PickledChair and Hiroshiba authored May 21, 2023
1 parent d766a52 commit 290d0f6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/actions/auto_gen_bind_pr/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ runs:
steps:
- name: Extract branch name
shell: bash
run: echo "##[set-output name=branch;]$(echo ${GITHUB_REF#refs/heads/})"
run: echo "branch=${GITHUB_REF#refs/heads/}" >> $GITHUB_OUTPUT
id: extract_branch
- name: Install cross compiler for linux aarch64
if: inputs.triple == 'aarch64-unknown-linux-gnu'
Expand All @@ -32,7 +32,7 @@ runs:
- name: install triple
run: rustup target add ${{ inputs.triple }}
shell: bash
- uses: Swatinem/rust-cache@v1
- uses: Swatinem/rust-cache@v2
with:
# cargoのキャシュが原因でテストが失敗してることが考えられる場合はバージョン部分を変更する
key: "v1-cargo-test-cache-${{ inputs.triple }}"
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ jobs:
include:
- os: windows-2019
- os: windows-2022
- os: macos-10.15
- os: macos-11
- os: macos-12
- os: ubuntu-20.04
Expand Down

0 comments on commit 290d0f6

Please sign in to comment.