Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/create-apk-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ jobs:
SMARTWAY_KEYSTORE_NAME: ${{ env.smartway_keystore_name }}

- name: Upload Apk
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: Apk-${{ inputs.configuration }}
path: ${{ inputs.working-directory }}/android/app/build/outputs/apk/${{ inputs.configuration }}/${{ env.apk_name }}
2 changes: 1 addition & 1 deletion .github/workflows/fetch-terraform-output.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

steps:
- name: Get Output
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: tf-output-${{ github.run_id }}-${{ github.run_attempt }}-${{ inputs.artifact_id }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-apk-s3.yml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ jobs:
role-to-assume: arn:aws:iam::${{ env.AWS_ACCOUNT_ID }}:role/${{ inputs.aws_github_role_name }}

- name: Download APK
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: ${{ inputs.apk-artifact-name }}
path: ${{ github.workspace }}/artifact/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-apk-soti.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download APK
uses: actions/download-artifact@v5
uses: actions/download-artifact@v7
with:
name: ${{ inputs.apk-artifact-name }}
path: ${{ github.workspace }}/artifact/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-docker-upload-artifact.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
run: ${{ inputs.run_command }}

- name: upload
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: ${{ inputs.artifact_name }}
path: ${{ inputs.workdir }}/${{ inputs.artifact_path }}
2 changes: 1 addition & 1 deletion .github/workflows/terraform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ jobs:
run: terraform output -json > tf-output.json

- name: Save Output
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
if: inputs.terraform_save_output
with:
name: tf-output-${{ github.run_id }}-${{ github.run_attempt }}-${{ github.job }}
Expand Down