Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest
name: stable / fmt
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
- name: Install nightly
Expand All @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
name: stable / build
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
- name: Install curl-dev
Expand All @@ -63,7 +63,7 @@ jobs:
env:
TRYBUILD: overwrite
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{matrix.rust}}
Expand All @@ -85,7 +85,7 @@ jobs:
env:
TRYBUILD: overwrite
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@nightly
- name: Enable type layout randomization
run: echo RUSTFLAGS=${RUSTFLAGS}\ -Zrandomize-layout >> $GITHUB_ENV
Expand All @@ -101,7 +101,7 @@ jobs:
# env:
# TRYBUILD: overwrite
# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7
# - uses: dtolnay/rust-toolchain@nightly
# - name: Install pcre2
# run: vcpkg install pcre2
Expand All @@ -120,7 +120,7 @@ jobs:
# env:
# TRYBUILD: overwrite
# steps:
# - uses: actions/checkout@v6
# - uses: actions/checkout@v7
# - uses: dtolnay/rust-toolchain@nightly
# - run: cargo generate-lockfile -Z minimal-versions
# - run: cargo check --locked
Expand All @@ -134,7 +134,7 @@ jobs:
TRYBUILD: overwrite
NETCALYX_CUSTOM_XML_PATHS: ""
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@nightly
- uses: dtolnay/install@cargo-docs-rs
- name: Install curl-dev
Expand All @@ -156,7 +156,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y libcurl4-openssl-dev
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: dtolnay/rust-toolchain@clippy
with:
toolchain: beta
Expand All @@ -173,7 +173,7 @@ jobs:
TRYBUILD: overwrite
NETCALYX_CUSTOM_XML_PATHS: ""
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
submodules: true
- name: Install stable
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
deb_version: ${{ steps.version_and_release.outputs.DEB_VERSION }}
deb_release: ${{ steps.version_and_release.outputs.DEB_RELEASE }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # needs the full git history to get tag information
- name: Define version and release
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # needs the full git history to get tag information
- name: Install build dependencies
Expand Down Expand Up @@ -328,7 +328,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
fetch-depth: 0 # needs the full git history to get tag information
- name: Install build dependencies
Expand Down Expand Up @@ -382,7 +382,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Download RPM artifact
uses: actions/download-artifact@v8
with:
Expand All @@ -406,7 +406,7 @@ jobs:
container:
image: ${{ matrix.image }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Download DEB artifact
uses: actions/download-artifact@v8
with:
Expand Down Expand Up @@ -475,7 +475,7 @@ jobs:
strip_command: true
dist_and_arch: aarch64-apple-latest # used just for naming the binary
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install build dependencies
if: matrix.install_deps
run: ${{ matrix.install_deps }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
name: Publish crates to crates.io
needs: [ test-and-build ]
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Install stable
uses: dtolnay/rust-toolchain@stable
- name: Install curl-dev
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-cargo-lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
pull-requests: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-ipfix-iana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
pull-requests: write

steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- name: Check IANA IPFIX registry for updates
run: |
Expand Down
Loading