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
8 changes: 4 additions & 4 deletions .github/workflows/android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Restore cache
uses: actions/cache/restore@v4
uses: actions/cache/restore@v5
with:
path: |
.dart_tool/
Expand Down Expand Up @@ -71,12 +71,12 @@ jobs:
mv build/app/outputs/bundle/release/app-release.aab output/$aabName

- name: Upload APK artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: TimingFlutter-Android-Apk
path: output/${{ steps.rename.outputs.apkName }}
- name: Upload AAB artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: TimingFlutter-Android-Aab
path: output/${{ steps.rename.outputs.aabName }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
name: Build Linux (${{ matrix.arch.target-platform }})
steps:
- name: Checkout code
uses: actions/checkout@v5
uses: actions/checkout@v6

- name: Install apt dependencies
uses: awalsh128/cache-apt-pkgs-action@latest
Expand All @@ -44,7 +44,7 @@ jobs:
execute_install_scripts: true

- name: Setup cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
.dart_tool/
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
tar -C AppDir -czvf $archiveName .

- name: Upload artifact
uses: actions/upload-artifact@v5
uses: actions/upload-artifact@v6
with:
name: TimingTrainer-Archive-${{ matrix.arch.archive-suffix }}
path: ${{ steps.compress.outputs.archiveName }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/checkout@v6

- name: Setup cache
uses: actions/cache@v4
uses: actions/cache@v5
with:
path: |
.dart_tool/
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
run: ./scripts/build_privacy_policy_html.sh

- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v3
uses: actions/upload-pages-artifact@v4
with:
path: build/web

Expand Down