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
2 changes: 1 addition & 1 deletion .github/workflows/codacy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Run Codacy Analysis CLI
uses: codacy/codacy-analysis-cli-action@v4.4.7
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
sdk: stable
- id: checkout
name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- id: install
name: Install dependencies
run: dart pub get
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
with:
sdk: stable
- id: checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Compare version with ref/tag
id: compare_version_with_tag
run: |
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Get version from pubspec.yaml
id: get_version_and_name
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish_dry_run.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
with:
sdk: stable
- id: checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
ref: ${{ github.event.pull_request.base.ref }}
- name: Load base version
Expand All @@ -65,7 +65,7 @@ jobs:
with:
sdk: stable
- id: checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Load this version
id: load_this_version
run: |
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
sdk: stable
- id: checkout
name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- id: install
name: Install dependencies
run: dart pub get
Expand All @@ -62,7 +62,7 @@ jobs:
steps:
- id: checkout
name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- id: read_min_dart
name: Read minimum Dart SDK from pubspec.yaml
run: |
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
sdk: ${{ needs.minimum_dart_meta.outputs.min_dart }}
- id: checkout
name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- id: install
name: Install dependencies
run: dart pub get
Expand Down Expand Up @@ -140,7 +140,7 @@ jobs:
sdk: stable
- id: checkout
name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- id: install
name: Install dependencies
run: dart pub get
Expand Down Expand Up @@ -216,7 +216,7 @@ jobs:
sdk: stable
- id: checkout
name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup Node
uses: actions/setup-node@v6
with:
Expand Down
Loading