summary refs log tree commit diff
path: root/.github/workflows/push_complement_image.yml
diff options
context:
space:
mode:
authordependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2023-09-25 11:39:54 -0400
committerGitHub <noreply@github.com>2023-09-25 11:39:54 -0400
commit139a24de9ee0e81faece1e375a197123a6e10b67 (patch)
treef6e74b07030acd3a2b76209a0e28b72c968e1510 /.github/workflows/push_complement_image.yml
parentAdd support for pydantic v2 via pydantic.v1 compat module (#16332) (diff)
downloadsynapse-139a24de9ee0e81faece1e375a197123a6e10b67.tar.xz
Bump actions/checkout from 3 to 4 (#16250)
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Diffstat (limited to '.github/workflows/push_complement_image.yml')
-rw-r--r--.github/workflows/push_complement_image.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/push_complement_image.yml b/.github/workflows/push_complement_image.yml

index e994b122cd..6fbd2ed015 100644 --- a/.github/workflows/push_complement_image.yml +++ b/.github/workflows/push_complement_image.yml
@@ -33,17 +33,17 @@ jobs: packages: write steps: - name: Checkout specific branch (debug build) - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: github.event_name == 'workflow_dispatch' with: ref: ${{ inputs.branch }} - name: Checkout clean copy of develop (scheduled build) - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: github.event_name == 'schedule' with: ref: develop - name: Checkout clean copy of master (on-push) - uses: actions/checkout@v3 + uses: actions/checkout@v4 if: github.event_name == 'push' with: ref: master