-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #101 from nextcloud/pin-actions-sha
- Loading branch information
Showing
24 changed files
with
92 additions
and
93 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,26 +23,26 @@ jobs: | |
|
||
steps: | ||
- name: Add reaction on start | ||
uses: peter-evans/[email protected] | ||
uses: peter-evans/create-or-update-comment@5adcb0bb0f9fb3f95ef05400558bdb3f329ee808 # v2.1.0 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reaction-type: "+1" | ||
|
||
- name: Checkout the latest code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
||
- name: Automatic Rebase | ||
uses: cirrus-actions/[email protected] | ||
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691 # 1.8 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
||
- name: Add reaction on failure | ||
uses: peter-evans/[email protected] | ||
uses: peter-evans/create-or-update-comment@5adcb0bb0f9fb3f95ef05400558bdb3f329ee808 # v2.1.0 | ||
if: failure() | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ jobs: | |
|
||
steps: | ||
- name: Check actor permission | ||
uses: skjnldsv/[email protected] | ||
uses: skjnldsv/check-actor-permission@e591dbfe838300c007028e1219ca82cc26e8d7c5 # v2.1 | ||
with: | ||
require: admin | ||
|
||
|
@@ -49,20 +49,20 @@ jobs: | |
|
||
steps: | ||
- name: Checkout target repository | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
with: | ||
path: target | ||
repository: ${{ github.repository_owner }}/${{ matrix.repositories }} | ||
|
||
- name: Check ${{ github.event.inputs.name }} file existence | ||
id: check_file_existence | ||
uses: andstor/file-existence-action@v2 | ||
uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2 | ||
with: | ||
files: target/.github/workflows/${{ github.event.inputs.name }} | ||
|
||
- name: Checkout source repository | ||
if: steps.check_file_existence.outputs.files_exists == 'true' | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
with: | ||
path: source | ||
|
||
|
@@ -72,7 +72,7 @@ jobs: | |
|
||
- name: Create Pull Request | ||
if: steps.check_file_existence.outputs.files_exists == 'true' | ||
uses: peter-evans/create-pull-request@v4 | ||
uses: peter-evans/create-pull-request@2b011faafdcbc9ceb11414d64d0573f37c774b04 # v4 | ||
with: | ||
body: Automated update of the ${{ github.event.inputs.name }} workflow from https://github.com/${{ github.repository }} | ||
branch: feat/workflow-auto-update-${{ github.event.inputs.name }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
|
||
steps: | ||
- name: Check actor permission | ||
uses: skjnldsv/[email protected] | ||
uses: skjnldsv/check-actor-permission@e591dbfe838300c007028e1219ca82cc26e8d7c5 # v2.1 | ||
with: | ||
require: write | ||
|
||
|
@@ -32,19 +32,19 @@ jobs: | |
echo "APP_VERSION=${GITHUB_REF##*/}" >> $GITHUB_ENV | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
with: | ||
path: ${{ env.APP_NAME }} | ||
|
||
- name: Get appinfo data | ||
id: appinfo | ||
uses: skjnldsv/xpath-action@master | ||
uses: skjnldsv/xpath-action@7e6a7c379d0e9abc8acaef43df403ab4fc4f770c # master | ||
with: | ||
filename: ${{ env.APP_NAME }}/appinfo/info.xml | ||
expression: "//info//dependencies//nextcloud/@min-version" | ||
|
||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/[email protected] | ||
uses: skjnldsv/read-package-engines-version-actions@1bdcee71fa343c46b18dc6aceffb4cd1e35209c6 # v1.2 | ||
id: versions | ||
# Continue if no package.json | ||
continue-on-error: true | ||
|
@@ -56,7 +56,7 @@ jobs: | |
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} | ||
# Skip if no package.json | ||
if: ${{ steps.versions.outputs.nodeVersion }} | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3 | ||
with: | ||
node-version: ${{ steps.versions.outputs.nodeVersion }} | ||
|
||
|
@@ -66,14 +66,14 @@ jobs: | |
run: npm i -g npm@"${{ steps.versions.outputs.npmVersion }}" | ||
|
||
- name: Set up php ${{ env.PHP_VERSION }} | ||
uses: shivammathur/setup-php@v2 | ||
uses: shivammathur/setup-php@1a18b2267f80291a81ca1d33e7c851fe09e7dfc4 # v2 | ||
with: | ||
php-version: ${{ env.PHP_VERSION }} | ||
coverage: none | ||
|
||
- name: Check composer.json | ||
id: check_composer | ||
uses: andstor/file-existence-action@v2 | ||
uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2 | ||
with: | ||
files: "${{ env.APP_NAME }}/composer.json" | ||
|
||
|
@@ -93,7 +93,7 @@ jobs: | |
- name: Check Krankerl config | ||
id: krankerl | ||
uses: andstor/file-existence-action@v2 | ||
uses: andstor/file-existence-action@20b4d2e596410855db8f9ca21e96fbe18e12930b # v2 | ||
with: | ||
files: ${{ env.APP_NAME }}/krankerl.toml | ||
|
||
|
@@ -124,7 +124,7 @@ jobs: | |
unzip latest-$NCVERSION.zip | ||
- name: Checkout server master fallback | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
if: ${{ steps.server-checkout.outcome != 'success' }} | ||
with: | ||
repository: nextcloud/server | ||
|
@@ -146,7 +146,7 @@ jobs: | |
tar -zcvf ${{ env.APP_NAME }}.tar.gz ${{ env.APP_NAME }} | ||
- name: Attach tarball to github release | ||
uses: svenstaro/upload-release-action@v2 | ||
uses: svenstaro/upload-release-action@133984371c30d34e38222a64855679a414cb7575 # v2 | ||
id: attach_to_release | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -156,7 +156,7 @@ jobs: | |
overwrite: true | ||
|
||
- name: Upload app to Nextcloud appstore | ||
uses: nextcloud-releases/nextcloud-appstore-push-action@v1 | ||
uses: nextcloud-releases/nextcloud-appstore-push-action@a011fe619bcf6e77ddebc96f9908e1af4071b9c1 # v1 | ||
with: | ||
app_name: ${{ env.APP_NAME }} | ||
appstore_token: ${{ secrets.APPSTORE_TOKEN }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,20 +18,20 @@ jobs: | |
|
||
steps: | ||
- name: Check actor permission | ||
uses: skjnldsv/[email protected] | ||
uses: skjnldsv/check-actor-permission@e591dbfe838300c007028e1219ca82cc26e8d7c5 # v2.1 | ||
with: | ||
require: write | ||
|
||
- name: Add reaction on start | ||
uses: peter-evans/[email protected] | ||
uses: peter-evans/create-or-update-comment@5adcb0bb0f9fb3f95ef05400558bdb3f329ee808 # v2.1.0 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reaction-type: "+1" | ||
|
||
- name: Parse command | ||
uses: skjnldsv/parse-command-comment@master | ||
uses: skjnldsv/parse-command-comment@e9cb9d1df338afed4295a59bbe27b4da53fd38a8 # master | ||
id: command | ||
|
||
# Init path depending on which command is run | ||
|
@@ -45,7 +45,7 @@ jobs: | |
fi | ||
- name: Init branch | ||
uses: xt0rted/pull-request-comment-branch@v1 | ||
uses: xt0rted/pull-request-comment-branch@653a7d5ca8bd91d3c5cb83286063314d0b063b8e # v1 | ||
id: comment-branch | ||
|
||
process: | ||
|
@@ -54,7 +54,7 @@ jobs: | |
|
||
steps: | ||
- name: Checkout ${{ needs.init.outputs.head_ref }} | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
fetch-depth: 0 | ||
|
@@ -66,14 +66,14 @@ jobs: | |
git config --local user.name "nextcloud-command" | ||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/[email protected] | ||
uses: skjnldsv/read-package-engines-version-actions@1bdcee71fa343c46b18dc6aceffb4cd1e35209c6 # v1.2 | ||
id: package-engines-versions | ||
with: | ||
fallbackNode: '^12' | ||
fallbackNpm: '^6' | ||
|
||
- name: Set up node ${{ steps.package-engines-versions.outputs.nodeVersion }} | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3 | ||
with: | ||
node-version: ${{ steps.package-engines-versions.outputs.nodeVersion }} | ||
cache: npm | ||
|
@@ -108,7 +108,7 @@ jobs: | |
git push --force origin ${{ needs.init.outputs.head_ref }} | ||
- name: Add reaction on failure | ||
uses: peter-evans/[email protected] | ||
uses: peter-evans/create-or-update-comment@5adcb0bb0f9fb3f95ef05400558bdb3f329ee808 # v2.1.0 | ||
if: failure() | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,26 +23,26 @@ jobs: | |
|
||
steps: | ||
- name: Add reaction on start | ||
uses: peter-evans/[email protected] | ||
uses: peter-evans/create-or-update-comment@5adcb0bb0f9fb3f95ef05400558bdb3f329ee808 # v2.1.0 | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
repository: ${{ github.event.repository.full_name }} | ||
comment-id: ${{ github.event.comment.id }} | ||
reaction-type: "+1" | ||
|
||
- name: Checkout the latest code | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
||
- name: Automatic Rebase | ||
uses: cirrus-actions/[email protected] | ||
uses: cirrus-actions/rebase@6e572f08c244e2f04f9beb85a943eb618218714d # 1.7 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
||
- name: Add reaction on failure | ||
uses: peter-evans/[email protected] | ||
uses: peter-evans/create-or-update-comment@5adcb0bb0f9fb3f95ef05400558bdb3f329ee808 # v2.1.0 | ||
if: failure() | ||
with: | ||
token: ${{ secrets.COMMAND_BOT_PAT }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,17 +33,17 @@ jobs: | |
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b # v3 | ||
|
||
- name: Read package.json node and npm engines version | ||
uses: skjnldsv/[email protected] | ||
uses: skjnldsv/read-package-engines-version-actions@1bdcee71fa343c46b18dc6aceffb4cd1e35209c6 # v1.2 | ||
id: versions | ||
with: | ||
fallbackNode: '^12' | ||
fallbackNpm: '^6' | ||
|
||
- name: Set up node ${{ steps.versions.outputs.nodeVersion }} | ||
uses: actions/setup-node@v3 | ||
uses: actions/setup-node@8c91899e586c5b171469028077307d293428b516 # v3 | ||
with: | ||
node-version: ${{ steps.versions.outputs.nodeVersion }} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.