Skip to content

⬆️upgrade(ci): Bump step-security/harden-runner from 2.9.0 to 2.10.1 in /.github/workflows #208

⬆️upgrade(ci): Bump step-security/harden-runner from 2.9.0 to 2.10.1 in /.github/workflows

⬆️upgrade(ci): Bump step-security/harden-runner from 2.9.0 to 2.10.1 in /.github/workflows #208

Workflow file for this run

# SPDX-FileCopyrightText: 2022 WebReady Projects <https://github.com/wr-projects/>
#
# SPDX-License-Identifier: MIT
---
name: Pipeline - Automatic Rebase
on:
issue_comment:
types: [created]
permissions:
contents: read
issues: write
jobs:
# More info:
rebase:
if: github.event.issue.pull_request != '' && contains(github.event.comment.body, '/rebase')
runs-on: ubuntu-latest
steps:
# More info: https://github.com/step-security/harden-runner.
- name: Harden Runner
id: harden_runner
uses: step-security/harden-runner@0d381219ddf674d61a7572ddd19d7941e271515c
with:
egress-policy: audit
# More info: https://github.com/peter-murray/workflow-application-token-action.
- name: Get token
id: get_token
uses: peter-murray/workflow-application-token-action@dc0413987a085fa17d19df9e47d4677cf81ffef3
with:
application_id: ${{ secrets.ID_REBASEISSUEBOT }}
application_private_key: ${{ secrets.PEM_REBASEISSUEBOT }}
# More info: https://github.com/actions/checkout.
- name: Checkout & Authentication
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
with:
token: ${{ steps.get_token.outputs.token }}
persist-credentials: false
fetch-depth: 0
- name: Automatic Rebase
uses: cirrus-actions/rebase@b87d48154a87a85666003575337e27b8cd65f691
env:
GITHUB_TOKEN: ${{ steps.get_token.outputs.token }}