Skip to content

Commit 891195a

Browse files
Merge pull request #3317 from MishimaHaruna/ci-updates
CI updates for deprecation warnings
2 parents 50efda8 + 0a32256 commit 891195a

16 files changed

+27
-115
lines changed

.github/workflows/build.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
# gcc, clang-8, clang-9 removed for reduce number of jobs
@@ -58,7 +58,7 @@ jobs:
5858
CC: ${{ matrix.CC }}
5959
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }} --enable-epoll
6060
steps:
61-
- uses: actions/checkout@v1
61+
- uses: actions/checkout@v4
6262
with:
6363
fetch-depth: 1
6464

.github/workflows/clang15_test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
CC: [clang-15]
@@ -55,7 +55,7 @@ jobs:
5555
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }}
5656
PACKET_VERSION: ${{ matrix.PACKET_VERSION }}
5757
steps:
58-
- uses: actions/checkout@v1
58+
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 1
6161

.github/workflows/codeql-analysis.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@ jobs:
2323

2424
steps:
2525
- name: Checkout repository
26-
uses: actions/checkout@v3
26+
uses: actions/checkout@v4
2727
with:
2828
# We must fetch at least the immediate parents so that if this is
2929
# a pull request then we can checkout the head.
3030
fetch-depth: 2
3131

3232
# Initializes the CodeQL tools for scanning.
3333
- name: Initialize CodeQL
34-
uses: github/codeql-action/init@v2
34+
uses: github/codeql-action/init@v3
3535
with:
3636
languages: ${{ matrix.language }}
3737

3838
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
3939
# If this step fails, then you should remove it and run the build manually (see below)
4040
- name: Autobuild
41-
uses: github/codeql-action/autobuild@v2
41+
uses: github/codeql-action/autobuild@v3
4242

4343
- name: Perform CodeQL Analysis
44-
uses: github/codeql-action/analyze@v2
44+
uses: github/codeql-action/analyze@v3

.github/workflows/controller.yml

-4
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,6 @@ jobs:
3535
needs: build
3636
if: ${{ !failure() && !cancelled() }}
3737
uses: ./.github/workflows/gccold2.yml
38-
gccold3:
39-
needs: build
40-
if: ${{ !failure() && !cancelled() }}
41-
uses: ./.github/workflows/gccold3.yml
4238
gccsnapshot_test:
4339
needs: build
4440
if: ${{ !failure() && !cancelled() }}

.github/workflows/gcc_test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
CC: [gcc]
@@ -55,7 +55,7 @@ jobs:
5555
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }} --enable-lto
5656
PACKET_VERSION: ${{ matrix.PACKET_VERSION }}
5757
steps:
58-
- uses: actions/checkout@v1
58+
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 1
6161

.github/workflows/gccold1.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
CC: ["gcc-10", "gcc-9"]
@@ -55,7 +55,7 @@ jobs:
5555
CC: ${{ matrix.CC }}
5656
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }} --enable-epoll
5757
steps:
58-
- uses: actions/checkout@v1
58+
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 1
6161

.github/workflows/gccold2.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
CC: ["gcc-8", "gcc-7"]
@@ -55,7 +55,7 @@ jobs:
5555
CC: ${{ matrix.CC }}
5656
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }} --enable-epoll
5757
steps:
58-
- uses: actions/checkout@v1
58+
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 1
6161

.github/workflows/gccold3.yml

-84
This file was deleted.

.github/workflows/gccsnapshot_test.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
CC: [gcc]
@@ -55,7 +55,7 @@ jobs:
5555
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }} --enable-lto
5656
PACKET_VERSION: ${{ matrix.PACKET_VERSION }}
5757
steps:
58-
- uses: actions/checkout@v1
58+
- uses: actions/checkout@v4
5959
with:
6060
fetch-depth: 1
6161

.github/workflows/hwsapibot.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
group: hwsapibot
1616
cancel-in-progress: true
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- name: info
2121
run: |

.github/workflows/macos_latest.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ env:
77
MYSQL_USER: 'ragnarok'
88
MYSQL_PASSWORD: 'ragnarok'
99
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
10-
MACOS_COMMON_PACKAGES: make zlib pcre mysql mysql-client mysql-connector-c
10+
MACOS_COMMON_PACKAGES: make zlib pcre mysql mysql-client
1111
SQLHOST: 'localhost'
1212

1313
jobs:
1414
build:
1515
runs-on: macos-latest
16-
timeout-minutes: 60
16+
timeout-minutes: 30
1717
strategy:
1818
matrix:
1919
CC: [clang]

.github/workflows/macos_m1.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ env:
77
MYSQL_USER: 'ragnarok'
88
MYSQL_PASSWORD: 'ragnarok'
99
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
10-
MACOS_COMMON_PACKAGES: make zlib pcre mysql mysql-client mysql-connector-c
10+
MACOS_COMMON_PACKAGES: make zlib pcre mysql mysql-client
1111
SQLHOST: 'localhost'
1212

1313
jobs:
1414
build:
1515
runs-on: macos-14
16-
timeout-minutes: 60
16+
timeout-minutes: 30
1717
strategy:
1818
matrix:
1919
CC: [clang]

.github/workflows/mariadb.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
CC: [gcc]
@@ -53,7 +53,7 @@ jobs:
5353
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }}
5454
PACKET_VERSION: ${{ matrix.PACKET_VERSION }}
5555
steps:
56-
- uses: actions/checkout@v1
56+
- uses: actions/checkout@v4
5757
with:
5858
fetch-depth: 1
5959

.github/workflows/mysql.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build:
1414
runs-on: ubuntu-latest
15-
timeout-minutes: 60
15+
timeout-minutes: 30
1616
strategy:
1717
matrix:
1818
CC: [gcc]
@@ -49,7 +49,7 @@ jobs:
4949
CONFIGURE_FLAGS: CC=${{ matrix.CC }} --enable-debug --enable-Werror --enable-buildbot ${{ matrix.RENEWAL }} ${{ matrix.HTTPLIB }} ${{ matrix.CLIENT_TYPE }} ${{ matrix.SANITIZER }} ${{ matrix.PACKET_VERSION }}
5050
PACKET_VERSION: ${{ matrix.PACKET_VERSION }}
5151
steps:
52-
- uses: actions/checkout@v1
52+
- uses: actions/checkout@v4
5353
with:
5454
fetch-depth: 1
5555

.github/workflows/tools.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
container:
2323
image: debian:unstable
2424
steps:
25-
- uses: actions/checkout@v1
25+
- uses: actions/checkout@v4
2626
with:
2727
fetch-depth: 1
2828

.github/workflows/windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ env:
1111
jobs:
1212
build:
1313
runs-on: windows-latest
14-
timeout-minutes: 60
14+
timeout-minutes: 30
1515
strategy:
1616
matrix:
1717
CC: [msbuild]

0 commit comments

Comments
 (0)