Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all GitHub actions dependencies #153

Merged
merged 3 commits into from
Aug 31, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions .github/workflows/deploy_google_play/action.yml
Abestanis marked this conversation as resolved.
Show resolved Hide resolved
Original file line number Diff line number Diff line change
Expand Up @@ -106,21 +106,21 @@ runs:
zip -r ${{ github.workspace }}/symbols.zip ${{ github.workspace }}/build/app/outputs/symbols/

- name: 📁 Upload build artifacts (symbols)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: symbols
path: |
${{ github.workspace }}/symbols.zip

- name: 📁 Upload build artifacts (aab)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sweyer@${{ steps.read-version.outputs.version-number }}.aab
path: |
${{ github.workspace }}/build/app/outputs/bundle/release/sweyer@${{ steps.read-version.outputs.version-number }}.aab

- name: 📁 Upload build artifacts (apk)
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: sweyer@${{ steps.read-version.outputs.version-number }}.apk
path: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sweyer_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
environment: prod
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🧪 Test Sweyer
if: ${{ github.event.inputs.skip-tests == 'false' }}
Expand All @@ -23,7 +23,7 @@ jobs:

- name: ☂ Upload Code Coverage
if: ${{ github.event.inputs.skip-tests == 'false' }}
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4

- name: 🚀🤖 Bundle and deploy to Google Play
uses: ./.github/workflows/deploy_google_play
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🧪 Test Sweyer
uses: ./.github/workflows/test
with:
testing_arguments: --coverage

- name: ☂ Upload Code Coverage
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
6 changes: 3 additions & 3 deletions .github/workflows/update_goldens.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,21 @@ jobs:
contents: write
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: 🧪 Test Sweyer
uses: ./.github/workflows/test
with:
testing_arguments: --update-goldens

- name: 📁 Save updated Golden test artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: golden-test-updated
path: test/golden/goldens

- name: 💾 Commit updated Golden test artifacts
uses: stefanzweifel/git-auto-commit-action@v4
uses: stefanzweifel/git-auto-commit-action@v5
if: github.event.inputs.commit == 'true'
with:
commit_message: 🤖 Update Golden test artifacts 🤖
Loading