Skip to content

Commit

Permalink
[skip ci] chore(ci): Update actions dependencies (#2591)
Browse files Browse the repository at this point in the history
  • Loading branch information
Claudemirovsky authored Dec 1, 2023
1 parent d60ff52 commit 1bf789a
Show file tree
Hide file tree
Showing 5 changed files with 28 additions and 27 deletions.
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/01_report_issue.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,12 @@ body:
id: reproduce-steps
attributes:
label: Steps to reproduce
description: Provide an example of the issue.
description: Provide an example of the issue. Be as specific as possible.
placeholder: |
Example:
1. First step
2. Second step
3. Issue here
1. First step (e.g. "Open Mahouka Koukou No Rettousei (first season)")
2. Second step (e.g. "Try to watch episode 15")
3. Issue here (e.g. "It shows a HTTP 403 error toast")
validations:
required: true

Expand Down Expand Up @@ -63,7 +63,7 @@ body:
description: |
You can find your Aniyomi version in **More → About**.
placeholder: |
Example: "0.12.3.10" or "Preview r6151"
Example: "0.12.3.10" or "Preview r6691"
validations:
required: true

Expand Down
2 changes: 1 addition & 1 deletion .github/pull_request_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Checklist:
- [ ] Updated `extVersionCode` value in `build.gradle` for individual extensions
- [ ] Updated `overrideVersionCode` or `baseVersionCode` as needed for all multisrc extensions
- [ ] Referenced all related issues in the PR body (e.g. "Closes #xyz")
- [ ] Added the `isNsfw = true` flag in `build.gradle` when appropriate
- [ ] Added the `containsNsfw = true` flag in `build.gradle` when appropriate
- [ ] Have not changed source names
- [ ] Have explicitly kept the `id` if a source's name or language were changed
- [ ] Have tested the modifications by compiling and running the extension through Android Studio
14 changes: 7 additions & 7 deletions .github/workflows/build_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
CI_MODULE_GEN: true
steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Validate Gradle Wrapper
uses: gradle/wrapper-validation-action@v1

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- id: generate-matrices
name: Create output matrices
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const numIndividualModules = process.env.NUM_INDIVIDUAL_MODULES;
Expand All @@ -105,10 +105,10 @@ jobs:
matrix: ${{ fromJSON(needs.prepare.outputs.multisrcMatrix) }}
steps:
- name: Checkout PR
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
Expand Down Expand Up @@ -139,10 +139,10 @@ jobs:
matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }}
steps:
- name: Checkout PR
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/build_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,22 +26,22 @@ jobs:
CI_MODULE_GEN: true
steps:
- name: Clone repo
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
token: ${{ secrets.ANIYOMIORG_BOT_PAT }}

- name: Find lib changes
id: modified-libs
uses: tj-actions/changed-files@v36
uses: tj-actions/changed-files@v40
with:
files: lib/**
files_ignore: lib/**.md
files_separator: " "
# This step is going to commit, but this will not trigger another workflow.

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand All @@ -57,7 +57,7 @@ jobs:
uses: gradle/wrapper-validation-action@v1

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
Expand All @@ -77,7 +77,7 @@ jobs:
- id: generate-matrices
name: Create output matrices
uses: actions/github-script@v6
uses: actions/github-script@v7
with:
script: |
const numIndividualModules = process.env.NUM_INDIVIDUAL_MODULES;
Expand All @@ -101,12 +101,12 @@ jobs:
matrix: ${{ fromJSON(needs.prepare.outputs.multisrcMatrix) }}
steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
Expand Down Expand Up @@ -152,12 +152,12 @@ jobs:
matrix: ${{ fromJSON(needs.prepare.outputs.individualMatrix) }}
steps:
- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt
Expand Down Expand Up @@ -202,13 +202,13 @@ jobs:
path: ~/apk-artifacts

- name: Set up JDK
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
java-version: 17
distribution: adopt

- name: Checkout master branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: master
path: master
Expand All @@ -223,14 +223,14 @@ jobs:
./.github/scripts/create-repo.sh
- name: Checkout repo branch
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
ref: repo
path: repo
token: ${{ secrets.ANIYOMIORG_BOT_PAT }}

- name: Import GPG key
uses: crazy-max/ghaction-import-gpg@v5
uses: crazy-max/ghaction-import-gpg@v6
with:
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
passphrase: ${{ secrets.GPG_PASSPHRASE }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/lock.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,9 @@ jobs:
permissions:
issues: write
steps:
- uses: dessant/lock-threads@v4
- uses: dessant/lock-threads@v5
with:
github-token: ${{ github.token }}
issue-inactive-days: '2'
pr-inactive-days: '2'
process-only: 'issues, prs'

0 comments on commit 1bf789a

Please sign in to comment.