Skip to content

⬆️upgrade(ci): Bump step-security/harden-runner from 2.2.0 to 2.10.4 in /.github/workflows #364

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

⬆️upgrade(ci): Bump step-security/harden-runner from 2.2.0 to 2.10.4 in /.github/workflows #364

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@0080882f6c36860b6ba35c610c98ce87d4e2f26f
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@8e4e6fbf6fcc8a272781d97597969d21b3812974
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@11bd71901bbe5b1630ceea73d27597364c9af683
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 }}