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 19, 2024
1 parent 70e99ca commit e60fda3
Show file tree
Hide file tree
Showing 11 changed files with 28 additions and 28 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
8 changes: 4 additions & 4 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@v3
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@v3
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -42,7 +42,7 @@ jobs:
run: ./gradlew clean && ./gradlew assembleDebug

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle
path: app/build/outputs/apk/debug/*.apk
Expand Down
8 changes: 4 additions & 4 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@v3
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@v3
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -40,7 +40,7 @@ jobs:
run: ./gradlew clean && ./gradlew assembleDebug

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle
path: app/build/outputs/apk/debug/*.apk
Expand Down
8 changes: 4 additions & 4 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@v3
uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GITHUB_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@v3
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -40,7 +40,7 @@ jobs:
run: ./gradlew clean && ./gradlew assembleDebug

- name: Upload Artifact
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4.3.4
with:
name: Signed app bundle
path: app/build/outputs/apk/debug/*.apk
Expand Down
10 changes: 5 additions & 5 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@v3
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@v3
- uses: actions/cache@v4.0.2
with:
path: |
~/.gradle/caches
Expand All @@ -39,7 +39,7 @@ jobs:
run: ./gradlew clean && ./gradlew assembleRelease

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

- name: Release to GitHub
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.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@v3
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@v3
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/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@v3
- uses: actions/checkout@v4.1.7
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: gradle/wrapper-validation-action@v1
- uses: gradle/wrapper-validation-action@v3.5.0

0 comments on commit e60fda3

Please sign in to comment.