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
4 changes: 2 additions & 2 deletions .github/workflows/build_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
android_environment_flag: ${{ steps.id_out.outputs.android_environment_flag }}
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
statuses: write
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Flutter and Java
uses: ./.github/actions/setup-flutter-with-java
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
android_deploy_status: ${{ steps.id_out.outputs.android_deploy_status }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: read-config-file
uses: actions-tools/yaml-outputs@v2
Expand All @@ -48,7 +48,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Download artifact
id: download-artifact
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/develop_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# Checkout Repository
##############################################
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
# Checkout Repository
##############################################
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

##############################################
# Set up Flutter and Java
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Setup Flutter
uses: ./.github/actions/setup-flutter-with-java
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/production_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
# Checkout Repository
##############################################
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -137,7 +137,7 @@ jobs:
# Checkout Repository
##############################################
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

##############################################
# Set up Flutter and Java
Expand Down Expand Up @@ -258,7 +258,7 @@ jobs:
# Checkout Repository
##############################################
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

##############################################
# Download APK Artifact
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
windows_environment_flag: ${{ steps.id_out.outputs.windows_environment_flag }}
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Update version number and download
id: id_unlabeled
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
ref: ${{ github.head_ref }}

Expand All @@ -168,7 +168,7 @@ jobs:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sandbox_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
version_number: ${{ steps.id_out.outputs.version_number }}
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
statuses: write
steps:
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Flutter and Java
uses: ./.github/actions/setup-flutter-with-java
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Set up Flutter and Java
uses: ./.github/actions/setup-flutter-with-java
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/staging_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
# Checkout Repository
##############################################
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6
with:
fetch-depth: 0

Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
# Checkout Repository
##############################################
- name: Checkout Repository
uses: actions/checkout@v5
uses: actions/checkout@v6

##############################################
# Set up Flutter and Java
Expand Down
Loading