Skip to content

chore: workflow runner fixes #436

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Jul 12, 2025
Merged
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
10 changes: 6 additions & 4 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ on:
schedule:
- cron: '0 0 * * *'

workflow_dispatch:

concurrency:

group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}
Expand All @@ -41,7 +43,7 @@ jobs:
addlicense:
name: verify licenses

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand All @@ -61,7 +63,7 @@ jobs:
buildifier:
name: check format with buildifier

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -99,7 +101,7 @@ jobs:
clang_format:
name: check format with clang-format

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand All @@ -115,7 +117,7 @@ jobs:
clang_tidy:
name: check format with clang-tidy

runs-on: ubuntu-20.04
runs-on: ubuntu-22.04

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ on:
schedule:
- cron: '0 0 * * *'

workflow_dispatch:

concurrency:

group: ${{ github.head_ref || github.run_id }}-${{ github.workflow }}
Expand Down Expand Up @@ -127,7 +129,7 @@ jobs:
flags: --config=clang-tsan
- name: 'NullVM on Windows/x86_64'
engine: 'null'
os: windows-2019
os: windows-2022
arch: x86_64
action: test
targets: -//test/fuzz/...
Expand Down
1 change: 1 addition & 0 deletions include/proxy-wasm/signature_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@

#pragma once

#include <string>
#include <string_view>

namespace proxy_wasm {
Expand Down
Loading