Skip to content

Commit

Permalink
ci: update actions/checkout in GitHub Actions workflows to v3 (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
striezel committed Nov 4, 2022
1 parent 90373f3 commit e437b9d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -34,7 +34,7 @@ jobs:
- x86_64-unknown-linux-gnu

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: |
rustup default ${{ matrix.rust }}
Expand All @@ -55,7 +55,7 @@ jobs:
- x86_64-unknown-linux-musl

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: |
rustup default ${{ matrix.rust }}
Expand All @@ -75,7 +75,7 @@ jobs:
- x86_64-apple-darwin

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: |
rustup default ${{ matrix.rust }}
Expand All @@ -96,7 +96,7 @@ jobs:
- x86_64-pc-windows-msvc

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run tests
run: |
rustup default ${{ matrix.rust }}
Expand Down Expand Up @@ -143,7 +143,7 @@ jobs:
- aarch64-apple-ios-sim
- aarch64-apple-darwin
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Run build
run: |
rustup default ${{ matrix.rust }}
Expand All @@ -154,7 +154,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Test Cgroup
run: |
docker build -f ci/cgroups/Dockerfile -t num-cpus-cgroups .
Expand Down

0 comments on commit e437b9d

Please sign in to comment.