Skip to content

Commit

Permalink
Workflow updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jpeiffer committed May 16, 2024
1 parent 39e450f commit b7f32f1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publisher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Validate
uses: peiffer-innovations/actions-flutter-validate@v1

Expand Down
14 changes: 11 additions & 3 deletions .github/workflows/pull_request.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
name: Flutter Pull Request Checker
name: Pull Request Checker

on:
workflow_dispatch:
pull_request:
branches: [main]

permissions:
# Only need to read contents
contents: read
# Require writing security events to upload SARIF file to security tab
security-events: write

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Validate
uses: peiffer-innovations/actions-flutter-validate@v1
uses: peiffer-innovations/actions-flutter-validate@v2
2 changes: 1 addition & 1 deletion .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Dependencies
uses: peiffer-innovations/actions-dart-dependency-updater@v1.0.18
uses: peiffer-innovations/actions-dart-dependency-updater@v1
with:
merge: true
pull_request: true
Expand Down
10 changes: 5 additions & 5 deletions pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ description: 'A Dart library to process string based templates using expressions
homepage: 'https://github.com/peiffer-innovations/template_expressions'
version: '3.2.0+7'

environment:
environment:
sdk: '>=3.0.0 <4.0.0'

dependencies:
dependencies:
convert: '^3.1.1'
crypto: '^3.0.1'
encrypt: '^5.0.3'
Expand All @@ -15,18 +15,18 @@ dependencies:
json_class: '^3.0.0+13'
json_path: '>=0.6.3 <1.0.0'
logging: '^1.2.0'
meta: '^1.10.0'
meta: '^1.12.0'
petitparser: '^6.0.1'
pointycastle: '^3.9.1'
quiver: '^3.2.1'
rxdart: '^0.27.7'
yaon: '^1.1.4+10'

dev_dependencies:
dev_dependencies:
flutter_lints: '^4.0.0'
test: '^1.25.5'

ignore_updates:
ignore_updates:
- 'archive'
- 'async'
- 'boolean_selector'
Expand Down

0 comments on commit b7f32f1

Please sign in to comment.