Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin' into dependabot/cargo/bytecheck…
Browse files Browse the repository at this point in the history
…-0.7.0
  • Loading branch information
pront committed Oct 23, 2024
2 parents ff13094 + 8c4e276 commit 7452ce3
Show file tree
Hide file tree
Showing 50 changed files with 1,475 additions and 536 deletions.
2 changes: 2 additions & 0 deletions .github/actions/spelling/expect.txt
Original file line number Diff line number Diff line change
Expand Up @@ -388,6 +388,8 @@ Fomichev
fonttbl
foob
foobarbaz
foobarbazqux
foobarbazquxquux
foobarfoobarfoo
FOOBARy
foobaz
Expand Down
253 changes: 0 additions & 253 deletions .github/semantic.yml

This file was deleted.

4 changes: 3 additions & 1 deletion .github/workflows/build_preview_sites.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ on:

jobs:
deploy_vector_preview_site:
if: ${{ github.event.workflow_run.conclusion == 'success' && contains(github.event.workflow_run.head_branch, 'website') }}
uses: ./.github/workflows/create_preview_sites.yml
with:
APP_ID: "d1a7j77663uxsc"
Expand All @@ -18,6 +19,7 @@ jobs:
ENDPOINT: ${{ secrets.BUILDER_ENDPOINT }}

deploy_rust_doc_preview_site:
if: ${{ github.event.workflow_run.conclusion == 'success' && contains(github.event.workflow_run.head_branch, 'website') }}
uses: ./.github/workflows/create_preview_sites.yml
with:
APP_ID: "d1hoyoksbulg25"
Expand All @@ -28,6 +30,7 @@ jobs:
ENDPOINT: ${{ secrets.BUILDER_ENDPOINT }}

deploy_vrl_playground_preview_site:
if: ${{ github.event.workflow_run.conclusion == 'success' && contains(github.event.workflow_run.head_branch, 'website') }}
uses: ./.github/workflows/create_preview_sites.yml
with:
APP_ID: "d2lr4eds605rpz"
Expand All @@ -36,4 +39,3 @@ jobs:
REQUEST_TOKEN: ${{ secrets.REQUEST_TOKEN }}
REQUEST_MESSAGE: ${{ secrets.REQUEST_MESSAGE }}
ENDPOINT: ${{ secrets.BUILDER_ENDPOINT }}

2 changes: 1 addition & 1 deletion .github/workflows/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
# Checkout full depth because in the check_changelog_fragments script, we need to specify a
# merge base. If we only shallow clone the repo, git may not have enough history to determine
# the base.
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ jobs:
install: ${{ steps.filter.outputs.install }}
k8s: ${{ steps.filter.outputs.k8s }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: dorny/paths-filter@v3
id: filter
Expand Down Expand Up @@ -237,7 +237,7 @@ jobs:
splunk: ${{ steps.filter.outputs.splunk }}
webhdfs: ${{ steps.filter.outputs.webhdfs }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# creates a yaml file that contains the filters for each integration,
# extracted from the output of the `vdev int ci-paths` command, which
Expand All @@ -262,7 +262,7 @@ jobs:
datadog-logs: ${{ steps.filter.outputs.datadog-logs }}
datadog-metrics: ${{ steps.filter.outputs.datadog-metrics }}
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# creates a yaml file that contains the filters for each test,
# extracted from the output of the `vdev int ci-paths` command, which
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-integration-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
runs-on: ubuntu-20.04-4core
timeout-minutes: 90
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: "recursive"
ref: ${{ github.event.review.commit_id }}
Expand Down Expand Up @@ -463,7 +463,7 @@ jobs:
runs-on: ubuntu-20.04-8core
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: "recursive"
ref: ${{ github.event.review.commit_id }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cli.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ jobs:

- name: (PR review) Checkout review SHA
if: ${{ github.event_name == 'pull_request_review' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: ${{ github.event.review.commit_id }}

- name: Checkout branch
if: ${{ github.event_name != 'pull_request_review' }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Cache Cargo registry + index
uses: actions/cache@v4
Expand Down
Loading

0 comments on commit 7452ce3

Please sign in to comment.