Skip to content

Commit

Permalink
CI: Update to Checkout Action v3
Browse files Browse the repository at this point in the history
  • Loading branch information
tlsa committed Nov 21, 2022
1 parent e88f101 commit d4004f3
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-devel.yaml
Expand Up @@ -4,7 +4,7 @@ jobs:
linux-gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
Expand All @@ -24,7 +24,7 @@ jobs:
linux-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
Expand All @@ -44,7 +44,7 @@ jobs:
mac-gcc:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: brew install deps
run: brew update && brew install
libyaml
Expand All @@ -55,7 +55,7 @@ jobs:
mac-clang:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: brew install deps
run: brew update && brew install
libyaml
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Expand Up @@ -7,7 +7,7 @@ jobs:
linux-gcc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
Expand All @@ -27,7 +27,7 @@ jobs:
linux-clang:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: apt-get install packages
run: sudo apt-get update -qq &&
sudo apt-get install --no-install-recommends -y
Expand All @@ -47,7 +47,7 @@ jobs:
mac-gcc:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: brew install deps
run: brew update && brew install
libyaml
Expand All @@ -58,7 +58,7 @@ jobs:
mac-clang:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: brew install deps
run: brew update && brew install
libyaml
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/static-analysis.yaml
Expand Up @@ -14,7 +14,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

Expand Down Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
fetch-depth: 1

Expand Down

0 comments on commit d4004f3

Please sign in to comment.