Skip to content

Commit

Permalink
Bump actions/checkout to v2
Browse files Browse the repository at this point in the history
Signed-off-by: Kohei Tokunaga <[email protected]>
  • Loading branch information
ktock committed Apr 20, 2020
1 parent 3ee1f41 commit 9241be2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- name: Install gnuplot
run: sudo apt-get --no-install-recommends install -y gnuplot
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Prepare output directory
run: mkdir "${BENCHMARK_RESULT_DIR}"
- name: Run benchmark
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,48 +6,48 @@ jobs:
runs-on: ubuntu-18.04
name: Build
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Build all
run: ./script/util/make.sh build -j2
test:
runs-on: ubuntu-18.04
name: Test
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Test all
run: ./script/util/make.sh test-all -j2
check:
runs-on: ubuntu-18.04
name: Check
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Check all
run: ./script/util/make.sh install-check-tools check
integration:
runs-on: ubuntu-18.04
name: Integration
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Run integration test
run: make integration
test-optimize:
runs-on: ubuntu-18.04
name: Optimize
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Run test for optimize subcommand of ctr-remote
run: make test-optimize
test-pullsecrets:
runs-on: ubuntu-18.04
name: PullSecrets
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Run test for pulling image from private registry on Kubernetes
run: make test-pullsecrets
test-cri:
runs-on: ubuntu-18.04
name: CRIValidation
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v2
- name: Varidate the runtime through CRI
run: make test-cri

0 comments on commit 9241be2

Please sign in to comment.