Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: upgrade nscloud checkout action #402

Merged
merged 1 commit into from
Jul 5, 2024
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
5 changes: 3 additions & 2 deletions .github/workflows/code-quality.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,9 @@ jobs:
runs-on: namespace-profile-standard-ubuntu22-amd64
steps:
- name: clone code
uses: namespacelabs/nscloud-checkout-action@v2
- run: nsc git-checkout update-submodules --mirror_base_path=${NSC_GIT_MIRROR} --repository_path=${GITHUB_WORKSPACE} --recurse
uses: namespacelabs/nscloud-checkout-action@v4
with:
submodules: recursive
- name: Install Protoc
run: sudo apt-get install -y protobuf-compiler
- run: rustup component add clippy
Expand Down
15 changes: 9 additions & 6 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
BUILD_PLATFORM: amd64
steps:
- name: clone code
uses: namespacelabs/nscloud-checkout-action@v2
- run: nsc git-checkout update-submodules --mirror_base_path=${NSC_GIT_MIRROR} --repository_path=${GITHUB_WORKSPACE} --recurse
uses: namespacelabs/nscloud-checkout-action@v4
with:
submodules: recursive
- name: Install Protoc
run: sudo apt-get install -y protobuf-compiler
- name: install Rust
Expand Down Expand Up @@ -74,8 +75,9 @@ jobs:
id-token: "write"
steps:
- name: clone code
uses: namespacelabs/nscloud-checkout-action@v2
- run: nsc git-checkout update-submodules --mirror_base_path=${NSC_GIT_MIRROR} --repository_path=${GITHUB_WORKSPACE} --recurse
uses: namespacelabs/nscloud-checkout-action@v4
with:
submodules: recursive
- name: install Rust
uses: actions-rs/toolchain@v1
with:
Expand All @@ -97,8 +99,9 @@ jobs:
runs-on: namespace-profile-standard-ubuntu22-amd64
steps:
- name: clone code
uses: namespacelabs/nscloud-checkout-action@v2
- run: nsc git-checkout update-submodules --mirror_base_path=${NSC_GIT_MIRROR} --repository_path=${GITHUB_WORKSPACE} --recurse
uses: namespacelabs/nscloud-checkout-action@v4
with:
submodules: recursive
- name: install Rust
uses: actions-rs/toolchain@v1
with:
Expand Down
Loading