forked from erlang/otp
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'lukas/gh/fix-prebuilt-cache-handling' into maint
* lukas/gh/fix-prebuilt-cache-handling: Update GitHub Action Versions gh: NO_CACHE if too many deleted gh: Pass args as env vars as DELETED can become very large gh: Rebuild bootstrap if any bootstrap apps changed gh: Fix argument bug when changing what has changed in prebuilt gh: Build correct docker image for cross, 32 and clang gh: Split otp_src and otp_cache into separate cache actions gh: Pin kerl version gh: Fix perf install gh: Don't use key for cache restore gh: Backport github actions to OTP-26
- Loading branch information
Showing
13 changed files
with
237 additions
and
134 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
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
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
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 |
---|---|---|
@@ -1,22 +1,29 @@ | ||
name: GitHub Actions Updater | ||
name: GitHub Actions Version Updater | ||
|
||
# Controls when the action will run. | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
# Automatically run on the 1st of every month | ||
- cron: '0 0 1 * *' | ||
# Automatically run on every Sunday | ||
- cron: '0 0 * * 0' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/[email protected] | ||
- name: Generate token | ||
id: generate_token | ||
uses: actions/[email protected] | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.APP_PEM }} | ||
|
||
- uses: actions/[email protected] | ||
with: | ||
token: ${{ steps.generate_token.outputs.token }} | ||
|
||
- name: Run GitHub Actions Version Updater | ||
uses: saadmk11/github-actions-version-updater@v0.7.3 | ||
uses: saadmk11/github-actions-version-updater@v0.8.1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
commit_message: "Updating GitHub actions to their latest versions" | ||
pull_request_labels: "team:IS" | ||
token: ${{ steps.generate_token.outputs.token }} |
Oops, something went wrong.