Skip to content

Commit 1537ba0

Browse files
Revert "fix: move checkout step to the beginning of each job in build workflow"
This reverts commit c34e4e7.
1 parent c34e4e7 commit 1537ba0

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@ jobs:
2525
runs-on: ubuntu-latest
2626
container: opensuse/leap
2727
steps:
28-
- name: Checkout
29-
uses: actions/checkout@v4
3028
- name: Install tar, gzip, dependencies and Rust
3129
run: |
3230
zypper --non-interactive -vvv in tar gzip libzstd-devel rustup openssl-devel
3331
# Seems to be a rustup command inconsistency
3432
rustup show
33+
- name: Checkout
34+
uses: actions/checkout@v4
3535
- name: Build
3636
run: |
3737
cargo update
@@ -41,8 +41,6 @@ jobs:
4141
runs-on: ubuntu-latest
4242
container: opensuse/leap
4343
steps:
44-
- name: Checkout
45-
uses: actions/checkout@v4
4644
- name: Install tar, gzip, dependencies and Rust
4745
run: |
4846
zypper --non-interactive -vvv in tar gzip libzstd-devel rustup openssl-devel
@@ -60,8 +58,6 @@ jobs:
6058
runs-on: ubuntu-latest
6159
container: opensuse/leap
6260
steps:
63-
- name: Checkout
64-
uses: actions/checkout@v4
6561
- name: Install tar, gzip, dependencies and Rust
6662
run: |
6763
zypper --non-interactive -vvv in tar gzip libzstd-devel rustup openssl-devel

0 commit comments

Comments
 (0)