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
2 changes: 1 addition & 1 deletion .github/actions/additional-checks/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ inputs:
runs:
using: composite
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ inputs.sdk }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_gha-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: anchore/sbom-action@v0
with:
path: ./
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/_test:additional-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
ddev-alias:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/additional-checks
with:
package-path: ./__tests__/fixtures/additional-checks
Expand All @@ -28,7 +28,7 @@ jobs:
no_entrypoint_imports:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: ./.github/actions/additional-checks
with:
package-path: ./__tests__/fixtures/additional-checks
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
sbom:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ inputs.sdk }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
analyze:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ inputs.sdk }}
Expand All @@ -50,7 +50,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ inputs.format-check}}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ inputs.sdk }}
Expand All @@ -72,7 +72,7 @@ jobs:
dependency-validator:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ inputs.sdk }}
Expand All @@ -92,7 +92,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.event_name == 'pull_request' }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- id: should-skip
uses: actions/github-script@v8
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Create SBOM Release Asset
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: dart-lang/setup-dart@v1
with:
Expand All @@ -40,7 +40,7 @@ jobs:
name: Publish to pub.dev
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- uses: dart-lang/setup-dart@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-unit.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
build-runner: ${{ steps.analyze-pubspec.outputs.build-runner }}
build-test: ${{ steps.analyze-pubspec.outputs.build-test }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- name: Analyze dart_test.yaml
working-directory: ${{ inputs.package-path }}
id: analyze-dart-test
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
matrix:
release-mode: ${{ fromJson(needs.pre.outputs.chrome-platform == 'true' && '[true, false]' || '[false]') }}
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6
- uses: dart-lang/setup-dart@v1
with:
sdk: ${{ inputs.sdk }}
Expand Down