Skip to content

Commit c7659b6

Browse files
authored
chore(deps): update actions/checkout action to v5 (#24)
1 parent 1abc5e6 commit c7659b6

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@ jobs:
1111
name: Package and Publish
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
token: ${{ secrets.REPO_DEPLOYMENT_TOKEN }}
17+
persist-credentials: false
1718
- uses: subosito/flutter-action@v2
1819
with:
1920
channel: 'stable'
2021
- run: flutter pub get
2122
- name: release
22-
uses: cycjimmy/semantic-release-action@v3
23+
uses: cycjimmy/semantic-release-action@v5
2324
with:
2425
extra_plugins: |
2526
@semantic-release/exec

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
name: Linting and Testing
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
with:
1616
submodules: true
1717
- uses: subosito/flutter-action@v2
1818
with:
1919
channel: 'stable'
2020
- run: flutter pub get
21-
- run: dart format --fix --set-exit-if-changed .
21+
- run: dart format --set-exit-if-changed .
2222
# - run: flutter analyze
2323
# - run: flutter test --coverage
2424
# - name: Setup LCOV

0 commit comments

Comments
 (0)