Skip to content

Commit

Permalink
ci: use actions/checkout@v3 (#579)
Browse files Browse the repository at this point in the history
  • Loading branch information
sreimers authored Oct 15, 2022
1 parent ac6dfbb commit 74faee3
Show file tree
Hide file tree
Showing 15 changed files with 18 additions and 18 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/abi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
ref: 'v2.6.1'
path: old

- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: current

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
CC: ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: openssl path macos
if: ${{ runner.os == 'macOS' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/c99.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: make
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ccheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: ccheck
run: |
wget "https://raw.githubusercontent.com/baresip/baresip/main/test/ccheck.py"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install clang-tools
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmake_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Install deps
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: make
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: sreimers/coverity-scan-action@v0
with:
project: 'baresip%2Fre'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
CC: ${{ matrix.compiler }}

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install devel tools
run: |
yum -y install gcc clang cmake make openssl-devel zlib-devel
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
run: |
sudo apt-get update && sudo apt-get install -y mingw-w64
- uses: actions/checkout@v2 # needed for pr checkout
- uses: actions/checkout@v3 # needed for pr checkout

- uses: sreimers/pr-dependency-action@v0.5
with:
Expand All @@ -31,7 +31,7 @@ jobs:
mv rem baresip-win32/
mv retest baresip-win32/
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
path: baresip-win32/re

Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
needs: MinGW-w64-build

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions/download-artifact@v2
- uses: sreimers/pr-dependency-action@v0.5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/musl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
container: alpine

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: install devel tools
run: |
apk add musl-dev git cmake gcc make binutils openssl-dev linux-headers zlib-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
SONAR_SERVER_URL: "https://sonarcloud.io"
BUILD_WRAPPER_OUT_DIR: build_wrapper_output_directory # Directory where build-wrapper output will be placed
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 11
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
ssl: [libressl, openssl]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Download pre-compiled OpenSSL/LibreSSL
run: |
wget "https://github.com/baresip/ci/releases/download/v0.1/assets.tar.gz"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: install packages
run: |
Expand Down

0 comments on commit 74faee3

Please sign in to comment.