Skip to content

Commit

Permalink
Remove dependency on stale action
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Gonzalez committed Apr 5, 2023
1 parent f3e333b commit 418afab
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 27 deletions.
30 changes: 12 additions & 18 deletions .github/workflows/reusable-docker-images-nextflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,15 +46,12 @@ jobs:
- name: 'Checkout repository branch'
uses: actions/checkout@v2

# Update / Install Rust
- name: 'Update / install rust'
uses: actions-rs/toolchain@v1
with:
profile: minimal
target: ${{ env.CARGO_TARGET }}
toolchain: stable
default: true
override: true
# Update Rust
- name: 'Update rust'
shell: bash
run: |
rustup update
rustup target install ${{ env.CARGO_TARGET }}
# Cache name
- name: 'Generate cache name'
Expand Down Expand Up @@ -108,15 +105,12 @@ jobs:
- name: 'Checkout repository branch'
uses: actions/checkout@v2

# Update / Install Rust
- name: 'Update / install rust'
uses: actions-rs/toolchain@v1
with:
profile: minimal
target: ${{ env.CARGO_TARGET }}
toolchain: stable
default: true
override: true
# Update Rust
- name: 'Update rust'
shell: bash
run: |
rustup update
rustup target install ${{ env.CARGO_TARGET }}
# Cache name
- name: 'Generate cache name'
Expand Down
15 changes: 6 additions & 9 deletions .github/workflows/reusable-docker-images-nxfutil.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,15 +43,12 @@ jobs:
- name: 'Checkout repository branch'
uses: actions/checkout@v2

# Update / Install Rust
- name: 'Update / install rust'
uses: actions-rs/toolchain@v1
with:
profile: minimal
target: ${{ env.CARGO_TARGET }}
toolchain: stable
default: true
override: true
# Update Rust
- name: 'Update rust'
shell: bash
run: |
rustup update
rustup target install ${{ env.CARGO_TARGET }}
# Cache name
- name: 'Generate cache name'
Expand Down

0 comments on commit 418afab

Please sign in to comment.