Skip to content

Commit

Permalink
ci: github: use actions/checkout@v3 everywhere
Browse files Browse the repository at this point in the history
  • Loading branch information
clementperon committed Oct 29, 2023
1 parent df2f2f0 commit 3ad183d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ jobs:
uses: actions/checkout@v3

- name: Checkout lipbcap for Android
uses: actions/checkout@main
uses: actions/checkout@v3
with:
repository: seladb/libpcap-android
path: ./libpcap-android
Expand All @@ -508,7 +508,7 @@ jobs:
run: cmake --build "$BUILD_DIR" -j

- name: Checkout ToyVpn-PcapPlusPlus
uses: actions/checkout@master
uses: actions/checkout@v3
with:
repository: seladb/ToyVpn-PcapPlusPlus
path: ./ToyVpn-PcapPlusPlus
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_vcpkg.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Vcpkg
run: |
Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Set up Vcpkg
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ jobs:
uses: actions/checkout@v3

- name: Checkout lipbcap for Android
uses: actions/checkout@main
uses: actions/checkout@v3
with:
repository: seladb/libpcap-android
path: ./libpcap-android
Expand Down

0 comments on commit 3ad183d

Please sign in to comment.