Update actions/checkout in GitHub Actions workflows to v3 (#54)
This commit is contained in:
parent
1cc3feb884
commit
34d8c2b74e
3 changed files with 3 additions and 3 deletions
2
.github/workflows/macos.yml
vendored
2
.github/workflows/macos.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
|
|
||||||
name: "${{matrix.config.os}}"
|
name: "${{matrix.config.os}}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build Release
|
- name: Build Release
|
||||||
run: |
|
run: |
|
||||||
|
|
2
.github/workflows/ubuntu.yml
vendored
2
.github/workflows/ubuntu.yml
vendored
|
@ -23,7 +23,7 @@ jobs:
|
||||||
|
|
||||||
name: "${{matrix.compiler.cc}}"
|
name: "${{matrix.compiler.cc}}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Configure clang
|
- name: Configure clang
|
||||||
run: |
|
run: |
|
||||||
|
|
2
.github/workflows/windows.yml
vendored
2
.github/workflows/windows.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
|
|
||||||
name: "${{matrix.config.vs}}"
|
name: "${{matrix.config.vs}}"
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: Build Win32
|
- name: Build Win32
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
Loading…
Reference in a new issue