Skip to content

Commit

Permalink
Update GitHub Action Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jul 5, 2024
1 parent ae83ca3 commit 0d778f6
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 41 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/add-comment-for-help-wanted_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
issues: write
steps:
- name: Create comment
uses: peter-evans/create-or-update-comment@71345be0265236311c031f5c7866368bd1eff043
uses: peter-evans/create-or-update-comment@v4.0.0
with:
token: ${{ secrets.GIT_BOT_TOKEN }}
issue-number: ${{ github.event.issue.number }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/android-branch_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GIT_BOT_TOKEN }}

- name: set up JDK 17
uses: actions/setup-java@v3
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- uses: actions/cache@v4
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -45,14 +45,14 @@ jobs:
run: ./gradlew clean && ./gradlew assembleWithInternetDebug && ./gradlew assembleWithoutInternetDebug

- name: Upload Artifact - WithInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithInternet
path: app/build/outputs/apk/withInternet/debug/*.apk
retention-days: 3

- name: Upload Artifact - WithoutInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithoutInternet
path: app/build/outputs/apk/withoutInternet/debug/*.apk
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/android-main_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GIT_BOT_TOKEN }}

- name: set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- uses: actions/cache@v4
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -43,14 +43,14 @@ jobs:
run: ./gradlew clean && ./gradlew assembleWithInternetDebug && ./gradlew assembleWithoutInternetDebug

- name: Upload Artifact - WithInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithInternet
path: app/build/outputs/apk/withInternet/debug/*.apk
retention-days: 3

- name: Upload Artifact - WithoutInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithoutInternet
path: app/build/outputs/apk/withoutInternet/debug/*.apk
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/android-pr_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,18 +13,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GITHUB_TOKEN }}

- name: set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- uses: actions/cache@v4
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -43,14 +43,14 @@ jobs:
run: ./gradlew clean && ./gradlew assembleWithInternetDebug && ./gradlew assembleWithoutInternetDebug

- name: Upload Artifact - WithInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithInternet
path: app/build/outputs/apk/withInternet/debug/*.apk
retention-days: 3

- name: Upload Artifact - WithoutInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithoutInternet
path: app/build/outputs/apk/withoutInternet/debug/*.apk
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/android-release_ci-forced.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GIT_BOT_TOKEN }}

- name: set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- uses: actions/cache@v4
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -40,7 +40,7 @@ jobs:
run: ./gradlew clean && ./gradlew assembleWithInternetRelease && ./gradlew assembleWithoutInternetRelease

- name: Sign APK - WithInternet
uses: ilharp/sign-android-release@v1
uses: ilharp/sign-android-release@v1.0.4
# ID used to access action output
id: sign_app_withInternet
with:
Expand All @@ -52,14 +52,14 @@ jobs:
buildToolsVersion: 33.0.0

- name: Upload Artifact - WithInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithInternet
path: app/build/outputs/apk/withInternet/release/*.apk
retention-days: 3

- name: Sign APK - WithoutInternet
uses: ilharp/sign-android-release@v1
uses: ilharp/sign-android-release@v1.0.4
# ID used to access action output
id: sign_app_withoutInternet
with:
Expand All @@ -71,7 +71,7 @@ jobs:
buildToolsVersion: 33.0.0

- name: Upload Artifact - WithoutInternet
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle - WithoutInternet
path: app/build/outputs/apk/withoutInternet/release/*.apk
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/android-release_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GIT_BOT_TOKEN }}

- name: set up JDK 17
uses: actions/setup-java@v4
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'temurin'
cache: gradle

- uses: actions/cache@v4
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -42,7 +42,7 @@ jobs:
run: ./gradlew clean && ./gradlew assembleWithInternetRelease && ./gradlew assembleWithoutInternetRelease

- name: Sign APK - WithInternet
uses: ilharp/sign-android-release@v1
uses: ilharp/sign-android-release@v1.0.4
# ID used to access action output
id: sign_app_withInternet
with:
Expand All @@ -54,7 +54,7 @@ jobs:
buildToolsVersion: 33.0.0

- name: Release to GitHub - WithInternet
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@2.9.0
with:
repo_token: ${{ secrets.GIT_BOT_TOKEN }}
file: ${{steps.sign_app_withInternet.outputs.signedFile}}
Expand All @@ -63,7 +63,7 @@ jobs:
overwrite: true

- name: Sign APK - WithoutInternet
uses: ilharp/sign-android-release@v1
uses: ilharp/sign-android-release@v1.0.4
# ID used to access action output
id: sign_app_withoutInternet
with:
Expand All @@ -75,7 +75,7 @@ jobs:
buildToolsVersion: 33.0.0

- name: Release to GitHub - WithoutInternet
uses: svenstaro/upload-release-action@v2
uses: svenstaro/upload-release-action@2.9.0
with:
repo_token: ${{ secrets.GIT_BOT_TOKEN }}
file: ${{steps.sign_app_withoutInternet.outputs.signedFile}}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out repository
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GIT_BOT_TOKEN }}
fetch-depth: 0

- name: Generate a changelog
uses: orhun/git-cliff-action@v3
uses: orhun/git-cliff-action@v3.2.0
with:
config: cliff.toml
args: --verbose
Expand All @@ -28,7 +28,7 @@ jobs:

- name: Import GPG key
id: import_gpg
uses: crazy-max/ghaction-import-gpg@v2
uses: crazy-max/ghaction-import-gpg@v6.1.0
with:
git_user_signingkey: true
git_commit_gpgsign: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/close-inactive-issues_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
issues: write
pull-requests: write
steps:
- uses: actions/stale@v5
- uses: actions/stale@v9.0.0
with:
days-before-issue-stale: 30
days-before-issue-close: 14
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/delete-unused-caches_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Do other steps like checkout, install, compile, etc.
- uses: MyAlbum/purge-cache@master
- uses: MyAlbum/purge-cache@v2.1.0
with:
max-age: 1800 # Cache max 7 days since last use (this is the default)
debug: true # Set to true to output debug info
4 changes: 2 additions & 2 deletions .github/workflows/gitguardian.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@v4.1.7
with:
fetch-depth: 0 # fetch all history so multiple commits can be scanned
- name: GitGuardian scan
uses: GitGuardian/ggshield/actions/secret@v1.26.0
uses: GitGuardian/ggshield/actions/secret@v1.29.0
env:
GITHUB_PUSH_BEFORE_SHA: ${{ github.event.before }}
GITHUB_PUSH_BASE_SHA: ${{ github.event.base }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/keep-workflow-packages-up-to-date.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.1.7
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.GIT_BOT_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/thank-you-issue_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
comment:
runs-on: ubuntu-latest
steps:
- uses: actions/github-script@v6
- uses: actions/github-script@v7.0.1
with:
github-token: ${{ secrets.GIT_BOT_TOKEN }}
script: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/validate-gradle-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: gradle/wrapper-validation-action@v1
- uses: gradle/wrapper-validation-action@v3.4.2

0 comments on commit 0d778f6

Please sign in to comment.