Skip to content

Commit

Permalink
Upgrade actions/checkout to v3
Browse files Browse the repository at this point in the history
To suppress the message from GHA

```
Node.js 12 actions are deprecated. Please update the following actions to use Node.js 16: actions/checkout@v2.
```

Signed-off-by: Yutaro Hayakawa <yhayakawa3720@gmail.com>
  • Loading branch information
YutaroHayakawa committed Jan 28, 2023
1 parent bd35869 commit f985232
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
IMAGE_NAME: ipftrace2-builder
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
IMAGE_NAME: ipftrace2-builder
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Login to GitHub Container Registry
uses: docker/login-action@v1
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Build ipft binary with Docker
run: |
Expand All @@ -28,7 +28,7 @@ jobs:
needs: build_binary
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Download ipft binary
uses: actions/download-artifact@v3
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
needs: build_binary
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Download ipft binary
uses: actions/download-artifact@v3
Expand Down

0 comments on commit f985232

Please sign in to comment.