Skip to content
Closed
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/scorecard.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ jobs:
publish_results: true

- name: Upload artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: SARIF results
path: results.sarif
retention-days: 5

- name: Upload to code scanning
uses: github/codeql-action/upload-sarif@v3
uses: github/codeql-action/upload-sarif@v4
with:
sarif_file: results.sarif
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
name: Build & Generate
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6

- uses: dtolnay/rust-toolchain@stable

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: generator/target
key: generator-${{ runner.os }}-${{ hashFiles('generator/Cargo.lock', 'generator/Cargo.toml', 'generator/src/**') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,24 +27,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout caller repo
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Generate fixtures
id: fixtures
uses: FerrLabs/Fixtures@v0
uses: FerrLabs/Fixtures@v1
with:
definitions: ${{ inputs.definitions }}

- name: Checkout FerrFlow
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: FerrLabs/FerrFlow
ref: ${{ inputs.ferrflow-ref }}
path: __ferrflow__

- uses: dtolnay/rust-toolchain@nightly

- uses: actions/cache@v4
- uses: actions/cache@v5
with:
path: __ferrflow__/target
key: ferrflow-${{ runner.os }}-${{ inputs.ferrflow-ref }}-${{ hashFiles('__ferrflow__/Cargo.lock') }}
Expand All @@ -61,7 +61,7 @@ jobs:

- name: Upload test output on failure
if: failure()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: fixture-test-output
path: ${{ steps.fixtures.outputs.generated-path }}
Expand Down
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,13 @@ runs:
using: 'composite'
steps:
- name: Checkout Fixtures
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: FerrLabs/Fixtures
path: __fixtures__

- name: Cache generator build
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: __fixtures__/generator/target
key: fixtures-generator-${{ runner.os }}-${{ hashFiles('__fixtures__/generator/Cargo.lock', '__fixtures__/generator/Cargo.toml', '__fixtures__/generator/src/**') }}
Expand Down