mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-01-03 13:07:24 +00:00
Updated actions/checkout from v3 to v4
This commit is contained in:
parent
517574c40c
commit
a7186b6072
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
@ -83,7 +83,17 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
if [ "${{ matrix.container }}" = "opensuse/leap:15" ]; then zypper install -y tar gzip; fi
|
if [ "${{ matrix.container }}" = "opensuse/leap:15" ]; then zypper install -y tar gzip; fi
|
||||||
|
|
||||||
- name: Checkout source code
|
# [NOTE]
|
||||||
|
# actions/checkout@v3 uses nodejs v16 and will be deprecated.
|
||||||
|
# However, @v4 does not work on centos7 depending on the glibc version,
|
||||||
|
# so we will continue to use @v3.
|
||||||
|
#
|
||||||
|
- name: Checkout source code(other than centos7)
|
||||||
|
if: matrix.container != 'centos:centos7'
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Checkout source code(only centos7)
|
||||||
|
if: matrix.container == 'centos:centos7'
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
# [NOTE]
|
# [NOTE]
|
||||||
@ -139,7 +149,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout source code
|
- name: Checkout source code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Brew tap
|
- name: Brew tap
|
||||||
run: |
|
run: |
|
||||||
@ -221,7 +231,7 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout source code
|
- name: Checkout source code
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Install packages
|
- name: Install packages
|
||||||
run: |
|
run: |
|
||||||
|
Loading…
Reference in New Issue
Block a user