Skip to content

Commit

Permalink
Bump GitHub Actions dependencies versions
Browse files Browse the repository at this point in the history
  • Loading branch information
evgfilim1 committed Apr 3, 2024
1 parent ae48b80 commit 7dc7427
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: ${{ env.JAVA_DISTRIBUTION }}
java-version: ${{ env.JAVA_VERSION }}
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: ${{ env.JAVA_DISTRIBUTION }}
java-version: ${{ env.JAVA_VERSION }}
Expand Down Expand Up @@ -109,7 +109,7 @@ jobs:
flutter build apk --release --split-per-abi --flavor "${BUILD_FLAVOR?}"
- name: Upload APK artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: android-apks
if-no-files-found: error
Expand All @@ -127,7 +127,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Java
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: ${{ env.JAVA_DISTRIBUTION }}
java-version: ${{ env.JAVA_VERSION }}
Expand All @@ -153,7 +153,7 @@ jobs:
mv build/web/version{.new,}.json
- name: Upload web artifact
uses: actions/upload-pages-artifact@v2
uses: actions/upload-pages-artifact@v3
with:
path: build/web/

Expand All @@ -172,7 +172,7 @@ jobs:
steps:
- name: Publish web on GitHub pages
id: deployment
uses: actions/deploy-pages@v2
uses: actions/deploy-pages@v4

create-release:
name: Create release
Expand All @@ -189,7 +189,7 @@ jobs:
fetch-depth: 0

- name: Download APK artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: android-apks
path: build
Expand All @@ -211,7 +211,7 @@ jobs:
echo "release_notes=$file" >>$GITHUB_OUTPUT
- name: Create a release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
body_path: ${{ steps.release_notes.outputs.release_notes }}
prerelease: ${{ steps.release_notes.outputs.prerelease }}
Expand Down

0 comments on commit 7dc7427

Please sign in to comment.