Skip to content

Commit

Permalink
ci: add checkout in the release workflow (#27)
Browse files Browse the repository at this point in the history
* ci: add checkout in the release workflow

* ci: upgrade checkout to v4
  • Loading branch information
YuanYuYuan authored Aug 26, 2024
1 parent 85d6818 commit e206cea
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust toolchain
run: |
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Setup the Wireshark library
id: wireshark_lib
Expand Down Expand Up @@ -96,8 +96,11 @@ jobs:
needs: builds
runs-on: [ self-hosted, ubuntu-20.04 ]
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Download the artifacts of previous builds
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ARTIFACTS

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
os: [ubuntu-22.04, ubuntu-20.04]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Rust toolchain
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
# - windows-11

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install dependencies
run: |
Expand Down

0 comments on commit e206cea

Please sign in to comment.