Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/build-debug-docker-with-chef.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
matrix: ${{ steps.platforms.outputs.matrix }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Create matrix
id: platforms
run: |
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Download meta bake definition
uses: actions/download-artifact@v7
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-enterprise.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
matrix: ${{ steps.platforms.outputs.matrix }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Create matrix
id: platforms
run: |
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Download meta bake definition
uses: actions/download-artifact@v7
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-docker-with-chef.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
matrix: ${{ steps.platforms.outputs.matrix }}
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Create matrix
id: platforms
run: |
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
platform=${{ matrix.platform }}
echo "PLATFORM_PAIR=${platform//\//-}" >> $GITHUB_ENV
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Download meta bake definition
uses: actions/download-artifact@v7
with:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/clippy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Install rust
run: |
rustup set auto-self-update disable
Expand All @@ -44,6 +44,4 @@ jobs:
- name: Upload SARIF file
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: 'results.sarif'


sarif_file: "results.sarif"
2 changes: 1 addition & 1 deletion .github/workflows/continuous-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
private-key: ${{ secrets.UNLEASH_BOT_PRIVATE_KEY }}

- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0
token: ${{ steps.generate-token.outputs.token }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Dependency review
uses: actions/dependency-review-action@v4
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker_ecr_arch64.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- enterprise
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v5
if: github.event_name != 'pull_request'
Expand Down Expand Up @@ -85,7 +85,7 @@ jobs:
needs: docker
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Send to pipeline
run: |
bash ./.github/notify_pipeline.sh
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/generate-sbom.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ permissions:

on:
release:
types: [ published ]
types: [published]
workflow_dispatch:
inputs:
tag:
Expand All @@ -22,11 +22,9 @@ jobs:
sbom:
runs-on: "ubuntu-24.04"
steps:
- uses: actions/checkout@v5
name: Checkout code
- uses: actions/checkout@v6
- name: Install cargo-sbom
run:
cargo install cargo-sbom
run: cargo install cargo-sbom
- name: Run sbom
shell: bash
run: |
Expand All @@ -44,7 +42,7 @@ jobs:
runs-on: ubuntu-latest
needs: sbom
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
name: Checkout code
- name: Download sbom artifact
uses: actions/download-artifact@v7
Expand All @@ -57,4 +55,4 @@ jobs:
run: |
TAG="${{ github.event.inputs.tag }}"
FILE=downloaded/unleash-edge-cyclone-dx.sbom.json
gh release upload "$TAG" "$FILE" --clobber
gh release upload "$TAG" "$FILE" --clobber
2 changes: 1 addition & 1 deletion .github/workflows/loadtesting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- 3063
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Run K6 client/features benchmark
uses: grafana/k6-action@v0.3.1
with:
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
submodules: recursive
Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
- name: enable windows longpaths
run: |
git config --global core.longpaths true
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
submodules: recursive
Expand Down Expand Up @@ -182,7 +182,7 @@ jobs:
- name: enable windows longpaths
run: |
git config --global core.longpaths true
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
submodules: recursive
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_MANIFEST_NAME: target/distrib/global-dist-manifest.json
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
submodules: recursive
Expand Down Expand Up @@ -309,7 +309,7 @@ jobs:
outputs:
val: ${{ steps.host.outputs.manifest }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
persist-credentials: false
submodules: recursive
Expand Down Expand Up @@ -374,7 +374,7 @@ jobs:
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
with:
submodules: recursive
uploadsbom:
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test-with-coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Set up fmt and clippy
run: rustup component add rustfmt clippy
- name: Check formatting with cargo fmt
run: cargo fmt --all -- --check
- name: Install required cargo packages for reporting test coverage
Expand Down
Loading
Loading