mirror of
https://github.com/KhronosGroup/SPIRV-Tools
synced 2024-11-26 05:10:05 +00:00
257cacfb3e
Bumps the github-actions group with 4 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [lukka/get-cmake](https://github.com/lukka/get-cmake), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [github/codeql-action](https://github.com/github/codeql-action). Updates `actions/checkout` from 4.1.6 to 4.1.7 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](a5ac7e51b4...692973e3d9
) Updates `lukka/get-cmake` from 3.29.4 to 3.30.0 - [Release notes](https://github.com/lukka/get-cmake/releases) - [Commits](85652a37b1...983956e4a5
) Updates `actions/upload-artifact` from 4.3.3 to 4.3.4 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](65462800fd...0b2256b8c0
) Updates `github/codeql-action` from 3.25.8 to 3.25.12 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](2e230e8fe0...4fa2a79536
) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: lukka/get-cmake 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-patch 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@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
|
|
|
|
# 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 }}
|