Skip to content

Commit

Permalink
ci.yml: upgrade to actions/checkout@v3
Browse files Browse the repository at this point in the history
This avoids the following warning from GitHub Actions:

    Node.js 12 actions are deprecated. Please update the following
    actions to use Node.js 16: actions/checkout@v2.
  • Loading branch information
ebiggers committed Jan 31, 2023
1 parent 0874175 commit fd8a13f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Test python code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -35,7 +35,7 @@ jobs:
name: Build and run benchmark tool (x86_64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -53,7 +53,7 @@ jobs:
name: Build and run benchmark tool (qemu-arm)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -73,7 +73,7 @@ jobs:
name: Build and run benchmark tool (qemu-aarch64)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -93,7 +93,7 @@ jobs:
name: Build and run benchmark tool (x86_64, valgrind enabled)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -113,7 +113,7 @@ jobs:
name: Build and run benchmark tool (x86_64, UBSAN enabled)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand All @@ -132,7 +132,7 @@ jobs:
name: Build and run benchmark tool (x86_64, ASAN enabled)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get update
Expand Down

0 comments on commit fd8a13f

Please sign in to comment.