chore(deps): update dependency docker/setup-buildx-action to v3 #1107
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
jobs: | |
make: | |
name: Convert to workflows | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
if: github.event_name == 'push' | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
token: "${{ secrets.SOCIALGROOVYBOT_BOTO_PAT }}" | |
ref: ${{ github.event.push.ref }} | |
- name: Checkout | |
if: github.event_name == 'pull_request' | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
token: "${{ secrets.SOCIALGROOVYBOT_BOTO_PAT }}" | |
ref: ${{ github.event.pull_request.head.ref }} | |
- uses: "dhall-lang/setup-dhall@fedd8695a49579db7eca165c06ce47f62f7d5248" | |
with: | |
version: "1.39.0" | |
- name: Github Actions Dhall To Yaml | |
run: | | |
mkdir -p .cache | |
make | |
- name: Clean up before commit | |
run: rm -rf .cache bin share | |
- env: | |
GITHUB_TOKEN: "${{ secrets.SOCIALGROOVYBOT_BOTO_PAT }}" | |
name: Commit changes | |
uses: EndBug/add-and-commit@af39be11779239242ac2d3e47148221973246379 | |
with: | |
author_email: "${{ secrets.SOCIALGROOVYBOT_EMAIL }}" | |
author_name: "${{ secrets.SOCIALGROOVYBOT_NAME }}" | |
branch: "${{ steps.comment.outputs.branch }}" | |
message: "chore(:robot:): dhall update" | |
name: "🤖 / Dhall Workflows" | |
on: | |
pull_request: | |
branches: | |
- master | |
- main | |
paths: | |
- "dhall/**" | |
- ".github/workflows/@workflows-src.yaml" | |
push: | |
branches: | |
- master | |
- main | |
paths: | |
- "dhall/**" | |
- ".github/workflows/@workflows-src.yaml" | |
workflow_dispatch: {} |