mirror of
https://github.com/nextcloud/talk-android
synced 2025-07-11 14:54:09 +01:00
add hashes to github action versions
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
0df576ba07
commit
0f89f5f477
7
.github/workflows/assembleFlavors.yml
vendored
7
.github/workflows/assembleFlavors.yml
vendored
@ -4,6 +4,9 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, stable-* ]
|
branches: [ master, stable-* ]
|
||||||
|
|
||||||
|
# Declare default permissions as read only.
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
flavor:
|
flavor:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -12,9 +15,9 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
flavor: [ Generic, Gplay ]
|
flavor: [ Generic, Gplay ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
|
||||||
- name: set up JDK 11
|
- name: set up JDK 11
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3
|
||||||
with:
|
with:
|
||||||
distribution: "temurin"
|
distribution: "temurin"
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
5
.github/workflows/autoApproveDependabot.yml
vendored
5
.github/workflows/autoApproveDependabot.yml
vendored
@ -3,11 +3,14 @@ on:
|
|||||||
pull_request_target:
|
pull_request_target:
|
||||||
branches: [ master, stable-* ]
|
branches: [ master, stable-* ]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
auto-approve:
|
auto-approve:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: hmarr/auto-approve-action@v3.1.0
|
- uses: hmarr/auto-approve-action@de8ae18c173c131e182d4adf2c874d8d2308a85b # v3.1.0
|
||||||
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
if: github.actor == 'dependabot[bot]' || github.actor == 'dependabot-preview[bot]'
|
||||||
with:
|
with:
|
||||||
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
github-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
7
.github/workflows/check.yml
vendored
7
.github/workflows/check.yml
vendored
@ -4,6 +4,9 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, stable-* ]
|
branches: [ master, stable-* ]
|
||||||
|
|
||||||
|
# Declare default permissions as read only.
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
check:
|
check:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -12,9 +15,9 @@ jobs:
|
|||||||
matrix:
|
matrix:
|
||||||
task: [ detekt, ktlintCheck ]
|
task: [ detekt, ktlintCheck ]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
|
||||||
- name: Set up JDK 11
|
- name: Set up JDK 11
|
||||||
uses: actions/setup-java@v3
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3
|
||||||
with:
|
with:
|
||||||
distribution: "temurin"
|
distribution: "temurin"
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
@ -4,10 +4,13 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, stable-* ]
|
branches: [ master, stable-* ]
|
||||||
|
|
||||||
|
# Declare default permissions as read only.
|
||||||
|
permissions: read-all
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
validation:
|
validation:
|
||||||
name: "Validation"
|
name: "Validation"
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
|
||||||
- uses: gradle/wrapper-validation-action@v1
|
- uses: gradle/wrapper-validation-action@55e685c48d84285a5b0418cd094606e199cca3b6 # v1
|
||||||
|
8
.github/workflows/qa.yml
vendored
8
.github/workflows/qa.yml
vendored
@ -4,6 +4,10 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
branches: [ master, stable-* ]
|
branches: [ master, stable-* ]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
pull-requests: write
|
||||||
|
contents: read
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
qa:
|
qa:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -11,11 +15,11 @@ jobs:
|
|||||||
- name: Check if secrets are available
|
- name: Check if secrets are available
|
||||||
run: echo "::set-output name=ok::${{ secrets.KS_PASS != '' }}"
|
run: echo "::set-output name=ok::${{ secrets.KS_PASS != '' }}"
|
||||||
id: check-secrets
|
id: check-secrets
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3
|
||||||
if: ${{ steps.check-secrets.outputs.ok == 'true' }}
|
if: ${{ steps.check-secrets.outputs.ok == 'true' }}
|
||||||
- name: set up JDK 11
|
- name: set up JDK 11
|
||||||
|
uses: actions/setup-java@1df8dbefe2a8cbc99770194893dd902763bee34b # v3
|
||||||
if: ${{ steps.check-secrets.outputs.ok == 'true' }}
|
if: ${{ steps.check-secrets.outputs.ok == 'true' }}
|
||||||
uses: actions/setup-java@v3
|
|
||||||
with:
|
with:
|
||||||
distribution: "temurin"
|
distribution: "temurin"
|
||||||
java-version: 11
|
java-version: 11
|
||||||
|
Loading…
Reference in New Issue
Block a user