mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-29 22:41:03 +00:00
5084f58e5d
Bumps the github-actions group with 4 updates: [actions/checkout](https://github.com/actions/checkout), [ossf/scorecard-action](https://github.com/ossf/scorecard-action), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 3.1.0 to 4.1.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3.1.0...b4ffde65f46336ab88eb53be808477a3936bae11) Updates `ossf/scorecard-action` from 2.1.2 to 2.3.0 - [Release notes](https://github.com/ossf/scorecard-action/releases) - [Changelog](https://github.com/ossf/scorecard-action/blob/main/RELEASE.md) - [Commits](e38b1902ae...483ef80eb9
) Updates `actions/upload-artifact` from 3.1.0 to 3.1.3 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](3cea537223...a8a3f3ad30
) Updates `github/codeql-action` from 2.2.4 to 2.22.3 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](17573ee1cc...0116bc2df5
) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: ossf/scorecard-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
57 lines
1.7 KiB
YAML
57 lines
1.7 KiB
YAML
name: Update dependencies
|
|
permissions:
|
|
contents: read
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 2 * * *'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
update-dependencies:
|
|
permissions:
|
|
contents: write
|
|
pull-requests: write
|
|
name: Update dependencies
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
|
|
|
|
# Checkout the depot tools they are needed by roll_deps.sh
|
|
- name: Checkout depot tools
|
|
run: git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
|
|
|
|
- name: Update PATH
|
|
run: echo "$(pwd)/depot_tools" >> $GITHUB_PATH
|
|
|
|
- name: Download dependencies
|
|
run: python3 utils/git-sync-deps
|
|
|
|
- name: Setup git user information
|
|
run: |
|
|
git config user.name "GitHub Actions[bot]"
|
|
git config user.email "<>"
|
|
git checkout -b roll_deps
|
|
|
|
- name: Update dependencies
|
|
run: |
|
|
utils/roll_deps.sh
|
|
if [[ `git diff HEAD..origin/main --name-only | wc -l` == 0 ]]; then
|
|
echo "changed=false" >> $GITHUB_OUTPUT
|
|
else
|
|
echo "changed=true" >> $GITHUB_OUTPUT
|
|
fi
|
|
id: update_dependencies
|
|
- name: Push changes and create PR
|
|
if: steps.update_dependencies.outputs.changed == 'true'
|
|
run: |
|
|
git push --force --set-upstream origin roll_deps
|
|
# Create a PR. If it aready exists, the command fails, so ignore the return code.
|
|
gh pr create --base main -f || true
|
|
# Add the 'kokoro:run' label so that the kokoro tests will be run.
|
|
gh pr edit --add-label 'kokoro:run'
|
|
gh pr merge --auto --squash
|
|
env:
|
|
GITHUB_TOKEN: ${{ github.token }}
|