ci: update github actions
- bump actions/checkout from 2 to 3 - bump actions/upload-artifact from 1 to 3 - bump github/codeql-actions from 1 to 2 - use version tag for actions/checkout Closes #8843
This commit is contained in:
parent
5227367903
commit
bda0d5fb84
2
.github/workflows/bearssl.yml
vendored
2
.github/workflows/bearssl.yml
vendored
@ -44,7 +44,7 @@ jobs:
|
|||||||
|
|
||||||
name: 'get, build and install bearssl'
|
name: 'get, build and install bearssl'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/bear/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/bear/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
|
|||||||
8
.github/workflows/codeql-analysis.yml
vendored
8
.github/workflows/codeql-analysis.yml
vendored
@ -21,11 +21,11 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
# Initializes the CodeQL tools for scanning.
|
# Initializes the CodeQL tools for scanning.
|
||||||
- name: Initialize CodeQL
|
- name: Initialize CodeQL
|
||||||
uses: github/codeql-action/init@v1
|
uses: github/codeql-action/init@v2
|
||||||
with:
|
with:
|
||||||
languages: cpp
|
languages: cpp
|
||||||
queries: security-extended
|
queries: security-extended
|
||||||
@ -33,7 +33,7 @@ jobs:
|
|||||||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
||||||
# If this step fails, then you should remove it and run the build manually (see below)
|
# If this step fails, then you should remove it and run the build manually (see below)
|
||||||
- name: Autobuild
|
- name: Autobuild
|
||||||
uses: github/codeql-action/autobuild@v1
|
uses: github/codeql-action/autobuild@v2
|
||||||
|
|
||||||
# ℹ️ Command-line programs to run using the OS shell.
|
# ℹ️ Command-line programs to run using the OS shell.
|
||||||
# 📚 https://git.io/JvXDl
|
# 📚 https://git.io/JvXDl
|
||||||
@ -47,4 +47,4 @@ jobs:
|
|||||||
# make release
|
# make release
|
||||||
|
|
||||||
- name: Perform CodeQL Analysis
|
- name: Perform CodeQL Analysis
|
||||||
uses: github/codeql-action/analyze@v1
|
uses: github/codeql-action/analyze@v2
|
||||||
|
|||||||
2
.github/workflows/event-based.yml
vendored
2
.github/workflows/event-based.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
|||||||
sudo python3 -m pip install impacket
|
sudo python3 -m pip install impacket
|
||||||
name: install prereqs and impacket
|
name: install prereqs and impacket
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && ./configure ${{ matrix.build.configure }} && make V=1
|
- run: autoreconf -fi && ./configure ${{ matrix.build.configure }} && make V=1
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
|
|||||||
2
.github/workflows/fuzz.yml
vendored
2
.github/workflows/fuzz.yml
vendored
@ -29,7 +29,7 @@ jobs:
|
|||||||
dry-run: false
|
dry-run: false
|
||||||
|
|
||||||
- name: Upload Crash
|
- name: Upload Crash
|
||||||
uses: actions/upload-artifact@v1
|
uses: actions/upload-artifact@v3
|
||||||
if: failure()
|
if: failure()
|
||||||
with:
|
with:
|
||||||
name: artifacts
|
name: artifacts
|
||||||
|
|||||||
2
.github/workflows/hacktoberfest-accepted.yml
vendored
2
.github/workflows/hacktoberfest-accepted.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
merged:
|
merged:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
with:
|
with:
|
||||||
fetch-depth: 100
|
fetch-depth: 100
|
||||||
|
|
||||||
|
|||||||
2
.github/workflows/linkcheck.yml
vendored
2
.github/workflows/linkcheck.yml
vendored
@ -17,7 +17,7 @@ jobs:
|
|||||||
check:
|
check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@master
|
- uses: actions/checkout@v3
|
||||||
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
||||||
with:
|
with:
|
||||||
use-quiet-mode: 'yes'
|
use-quiet-mode: 'yes'
|
||||||
|
|||||||
2
.github/workflows/linux-hyper.yml
vendored
2
.github/workflows/linux-hyper.yml
vendored
@ -41,7 +41,7 @@ jobs:
|
|||||||
RUSTFLAGS="--cfg hyper_unstable_ffi" cargo +nightly rustc --features client,http1,http2,ffi -Z unstable-options --crate-type cdylib)
|
RUSTFLAGS="--cfg hyper_unstable_ffi" cargo +nightly rustc --features client,http1,http2,ffi -Z unstable-options --crate-type cdylib)
|
||||||
name: 'install hyper'
|
name: 'install hyper'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/hyper/target/debug" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1
|
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/hyper/target/debug" ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
|
|||||||
4
.github/workflows/macos.yml
vendored
4
.github/workflows/macos.yml
vendored
@ -87,7 +87,7 @@ jobs:
|
|||||||
- run: python3 -m pip install impacket
|
- run: python3 -m pip install impacket
|
||||||
name: 'pip3 install'
|
name: 'pip3 install'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }}
|
- run: autoreconf -fi && ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }}
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
@ -137,7 +137,7 @@ jobs:
|
|||||||
- run: python3 -m pip install impacket
|
- run: python3 -m pip install impacket
|
||||||
name: 'pip3 install'
|
name: 'pip3 install'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: cmake -H. -Bbuild -DCURL_WERROR=ON -DPICKY_COMPILER=ON ${{ matrix.build.generate }}
|
- run: cmake -H. -Bbuild -DCURL_WERROR=ON -DPICKY_COMPILER=ON ${{ matrix.build.generate }}
|
||||||
name: 'cmake generate'
|
name: 'cmake generate'
|
||||||
|
|||||||
2
.github/workflows/mbedtls.yml
vendored
2
.github/workflows/mbedtls.yml
vendored
@ -40,7 +40,7 @@ jobs:
|
|||||||
make DESTDIR=$HOME/mbed install
|
make DESTDIR=$HOME/mbed install
|
||||||
name: 'install mbedtls'
|
name: 'install mbedtls'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/mbed/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/mbed/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
|
|||||||
2
.github/workflows/msh3.yml
vendored
2
.github/workflows/msh3.yml
vendored
@ -46,7 +46,7 @@ jobs:
|
|||||||
cmake --install .
|
cmake --install .
|
||||||
name: 'build and install msh3'
|
name: 'build and install msh3'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/msh3/lib -Wl,-rpath,$HOME/quictls/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/msh3/lib -Wl,-rpath,$HOME/quictls/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
||||||
name: 'configure and build curl'
|
name: 'configure and build curl'
|
||||||
|
|||||||
2
.github/workflows/nss.yml
vendored
2
.github/workflows/nss.yml
vendored
@ -31,7 +31,7 @@ jobs:
|
|||||||
sudo python3 -m pip install impacket
|
sudo python3 -m pip install impacket
|
||||||
name: install prereqs and impacket
|
name: install prereqs and impacket
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi
|
- run: autoreconf -fi
|
||||||
name: 'autoreconf'
|
name: 'autoreconf'
|
||||||
|
|||||||
2
.github/workflows/openssl3.yml
vendored
2
.github/workflows/openssl3.yml
vendored
@ -40,7 +40,7 @@ jobs:
|
|||||||
make && make install_sw
|
make && make install_sw
|
||||||
name: 'build and install openssl3'
|
name: 'build and install openssl3'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/openssl3/lib64" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/openssl3/lib64" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.configure }} && make V=1
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
|
|||||||
2
.github/workflows/rustls.yml
vendored
2
.github/workflows/rustls.yml
vendored
@ -39,7 +39,7 @@ jobs:
|
|||||||
make DESTDIR=$HOME/rustls install
|
make DESTDIR=$HOME/rustls install
|
||||||
name: 'install rustls'
|
name: 'install rustls'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1
|
- run: autoreconf -fi && ./configure --enable-warnings --enable-werror ${{ matrix.build.configure }} && make V=1
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
|
|||||||
2
.github/workflows/wolfssl.yml
vendored
2
.github/workflows/wolfssl.yml
vendored
@ -44,7 +44,7 @@ jobs:
|
|||||||
make && make install
|
make && make install
|
||||||
name: 'install wolfssl'
|
name: 'install wolfssl'
|
||||||
|
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.curl-configure }} && make V=1
|
- run: autoreconf -fi && LDFLAGS="-Wl,-rpath,$HOME/wssl/lib" ./configure --enable-warnings --enable-werror --enable-headers-api ${{ matrix.build.curl-configure }} && make V=1
|
||||||
name: 'configure and build'
|
name: 'configure and build'
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user