Skip to content

Commit

Permalink
[CI][CD] Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
ViliusSutkus89 committed Dec 29, 2023
1 parent d2cb5ed commit 7a73cc0
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:
done
ls -lh artifacts
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: artifacts
path: artifacts
Expand All @@ -85,13 +85,13 @@ jobs:
- run: ./ci-scripts/incrementVersion --patch
id: postReleaseVersionIncrement

- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[CD]Post release version increment to ${{ steps.postReleaseVersionIncrement.outputs.newVersionName }} (from ${{ steps.postReleaseVersionIncrement.outputs.oldVersionName }})"
file_pattern: ${{ steps.postReleaseVersionIncrement.outputs.files }}

- run: echo -n > UpcomingReleaseNotes.md
- uses: stefanzweifel/git-auto-commit-action@v4
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "[CD]Post release UpcomingReleaseNotes.md truncation"
file_pattern: UpcomingReleaseNotes.md
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,14 +58,14 @@ jobs:
SIGNING_ALIAS: alias1

- name: artifact release builds
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: APKs
path: app/build/outputs/apk/release/*.apk
if-no-files-found: error

- name: Artifact lint report
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: app/build/reports/lint-results-release.html
name: lintResults
Expand All @@ -90,7 +90,7 @@ jobs:
run: tar -cf app-build.tar app/build

- name: artifact app/build
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: app-build.tar
path: app-build.tar
Expand Down Expand Up @@ -151,7 +151,7 @@ jobs:
if: ${{ ! steps.avd-cache.outputs.cache-hit }}

- name: Download app/build artifact
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: app-build.tar
- run: tar -xf app-build.tar
Expand Down Expand Up @@ -190,7 +190,7 @@ jobs:
test ! -f sorry_but_tests_are_failing
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
if: always()
with:
name: testResults-${{ matrix.api-level }}-${{ matrix.arch }}-${{ matrix.api-type-target }}
Expand Down

0 comments on commit 7a73cc0

Please sign in to comment.