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
4 changes: 2 additions & 2 deletions .github/workflows/dev-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
name: Tests and checks
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.PTA }}
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:
needs:
- testing
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.PTA }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/master-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
description: "The version in the pubspec.yaml file."
version: ${{ steps.tag_validation.outputs.version }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/composite/tag-validation
id: tag_validation

Expand All @@ -39,7 +39,7 @@ jobs:
outputs:
coverage: ${{ steps.coverage.outputs.percentage }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/composite/flutter-setup
with:
encrypted-signets-api-cert-password: ${{ secrets.ENCRYPTED_SIGNETS_API_CERT_PASSWORD }}
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
needs:
- testing
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/composite/flutter-setup
with:
encrypted-signets-api-cert-password: ${{ secrets.ENCRYPTED_SIGNETS_API_CERT_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
# Disable fail-fast as we want results from all even if one fails.
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: ./.github/composite/flutter-setup
with:
encrypted-signets-api-cert-password: ${{ secrets.ENCRYPTED_SIGNETS_API_CERT_PASSWORD }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/versionning-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
# The version label can't contain a ":" because of the YAML specification
if: ${{ github.event_name == 'pull_request' && !contains(github.event.pull_request.labels.*.name, 'version - Unversioned') }}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
token: ${{ secrets.PTA }}
- name: Bump version using labels
Expand Down
Loading