Skip to content

Commit

Permalink
ci: bump actions/checkout to v4
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Jan 29, 2024
1 parent f202d99 commit cf097af
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/amd64_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
DISTRO: ${{ matrix.distro }}
LANG: ${{ matrix.lang }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check docker
run: |
docker info
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
GENERATOR: ${{ matrix.build[0] }}
BUILD_TYPE: ${{ matrix.build[1] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Ninja
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux_dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
GENERATOR: ${{ matrix.build[0] }}
BUILD_TYPE: ${{ matrix.build[1] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Ninja
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
GENERATOR: ${{ matrix.build[0] }}
BUILD_TYPE: ${{ matrix.build[1] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Ninja
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_linux_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
GENERATOR: ${{ matrix.build[0] }}
BUILD_TYPE: ${{ matrix.build[1] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Ninja
run: |
sudo apt-get update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_macos_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
TEST_TARGET: ${{ matrix.build[3] }}
INSTALL_TARGET: ${{ matrix.build[4] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check cmake
run: cmake --version
- name: Configure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_macos_dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
TEST_TARGET: ${{ matrix.build[3] }}
INSTALL_TARGET: ${{ matrix.build[4] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Swig install
run: brew install swig
- name: Check swig
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_macos_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
TEST_TARGET: ${{ matrix.build[3] }}
INSTALL_TARGET: ${{ matrix.build[4] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Swig install
run: brew install swig
- name: Check swig
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_macos_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
TEST_TARGET: ${{ matrix.build[3] }}
INSTALL_TARGET: ${{ matrix.build[4] }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Swig install
run: brew install swig
- name: Check swig
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows_cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
visual-studio:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check cmake
run: cmake --version
- name: Configure
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows_dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
visual-studio:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install SWIG 4.0.2
run: |
(New-Object System.Net.WebClient).DownloadFile("http://prdownloads.sourceforge.net/swig/swigwin-4.0.2.zip","swigwin-4.0.2.zip");
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows_java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
visual-studio:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Check cmake
run: cmake --version
- name: Install SWIG 4.0.2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/amd64_windows_python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
visual-studio:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install SWIG 4.0.2
run: |
(New-Object System.Net.WebClient).DownloadFile("http://prdownloads.sourceforge.net/swig/swigwin-4.0.2.zip","swigwin-4.0.2.zip");
Expand Down

0 comments on commit cf097af

Please sign in to comment.