Skip to content

Commit

Permalink
ci: use actions/checkout@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
robert-scheck committed Dec 25, 2023
1 parent cf425b3 commit 222be78
Show file tree
Hide file tree
Showing 19 changed files with 22 additions and 22 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@v3
- uses: actions/checkout@v4
with:
ref: 'v3.6.0'
path: old

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/android.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@v3
- uses: actions/checkout@v4

- name: "build openssl"
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
CMAKE_GENERATOR: Ninja

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

- name: openssl path macos
if: ${{ runner.os == 'macOS' }}
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-22.04

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

- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
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 @@ -59,7 +59,7 @@ jobs:
}

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

- name: Install OpenSSL
if: ${{ matrix.config.openssl }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:

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

- 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 @@ -16,7 +16,7 @@ jobs:
CMAKE_GENERATOR: Ninja

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

- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.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@v3
- uses: actions/checkout@v4
- name: Prepare
run: cmake -B ${{github.workspace}}/build
- uses: vapier/coverity-scan-action@v1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fedora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
CMAKE_GENERATOR: Ninja

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install devel tools
run: |
yum -y install gcc clang cmake make openssl-devel zlib-devel ninja-build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/freebsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
CMAKE_GENERATOR: Ninja

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

- name: Test in FreeBSD
id: test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: macos-latest

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

- name: build
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.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@v3
- uses: actions/checkout@v4
- name: ccheck
run: |
wget "https://raw.githubusercontent.com/baresip/baresip/main/test/ccheck.py"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/mingw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
run: |
sudo apt-get update && sudo apt-get install -y mingw-w64 ninja-build
- uses: actions/checkout@v3 # needed for pr checkout
- uses: actions/checkout@v4 # needed for pr checkout

- uses: sreimers/[email protected]
with:
name: baresip-win32
repo: https://github.com/baresip/baresip-win32
secret: ${{ secrets.GITHUB_TOKEN }}

- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
path: baresip-win32/re

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

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: actions/download-artifact@v2
- uses: sreimers/[email protected]
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 @@ -17,7 +17,7 @@ jobs:
CMAKE_GENERATOR: Ninja

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: install devel tools
run: |
apk add musl-dev git cmake gcc g++ make binutils openssl-dev linux-headers zlib-dev ninja
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sanitizers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
ASAN_OPTIONS: fast_unwind_on_malloc=0

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

- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up JDK 17
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
OPENSSL_ROOT_DIR: "assets/${{ matrix.ssl }}"

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

- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/strict-c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
CMAKE_GENERATOR: Ninja

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

- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/valgrind.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
CMAKE_GENERATOR: Ninja

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

- name: fix flaky azure mirrors
if: ${{ runner.os == 'Linux' }}
Expand Down

0 comments on commit 222be78

Please sign in to comment.