mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-21 19:53:05 +00:00
ci: downgrade to checkout v3 when building releases in non-GH containers (#1352)
This commit is contained in:
parent
dab4b6c483
commit
300f66700e
1 changed files with 7 additions and 0 deletions
7
.github/workflows/build_releases.yml
vendored
7
.github/workflows/build_releases.yml
vendored
|
@ -123,10 +123,17 @@ jobs:
|
|||
}
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
if: matrix.info.container == ''
|
||||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Checkout repository (non-GitHub container)
|
||||
if: matrix.info.container != ''
|
||||
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
|
||||
with:
|
||||
fetch-depth: 1
|
||||
|
||||
- name: Set up Rust toolchain
|
||||
if: matrix.info.container == ''
|
||||
uses: dtolnay/rust-toolchain@b44cb146d03e8d870c57ab64b80f04586349ca5d
|
||||
|
|
Loading…
Reference in a new issue