Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 1 addition & 9 deletions .github/workflows/actions-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,17 +21,9 @@

jobs:
lint_validate_actions:
runs-on: ubuntu-latest
permissions:
id-token: write
runs-on: github-hosted-small

Check failure on line 24 in .github/workflows/actions-lint.yaml

View workflow job for this annotation

GitHub Actions / lint-actions / lint_validate_actions

label "github-hosted-small" is unknown. available labels are "windows-latest", "windows-2022", "windows-2019", "windows-2016", "ubuntu-latest", "ubuntu-22.04", "ubuntu-20.04", "ubuntu-18.04", "macos-latest", "macos-latest-xl", "macos-13-xl", "macos-13", "macos-13.0", "macos-12-xl", "macos-12", "macos-12.0", "macos-11", "macos-11.0", "macos-10.15", "self-hosted", "x64", "arm", "arm64", "linux", "macos", "windows". if it is a custom label for self-hosted runner, set list of labels in actionlint.yaml config file

steps:
- name: Harden the runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: block
policy: global-allowed-endpoints-policy

- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0

- name: Checkout Actoinlint Configs
Expand Down
10 changes: 1 addition & 9 deletions .github/workflows/attach-release-assets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -62,18 +62,10 @@ permissions:

jobs:
release_attach_assets:
runs-on: ubuntu-latest
runs-on: github-hosted-small
if: github.event_name == 'push' && format('refs/heads/{0}', github.event.repository.default_branch) == github.ref
permissions:
id-token: write

steps:
- name: Harden the runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: block
policy: global-allowed-endpoints-policy

- name: Download all build artifacts
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
if: inputs.artifact_file_globs != ''
Expand Down
20 changes: 2 additions & 18 deletions .github/workflows/conventional-commit-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,17 +108,9 @@ jobs:
commit-lint:
name: PR Title and Commits Lint
if: github.event_name == 'pull_request'
runs-on: ubuntu-latest
permissions:
id-token: write
runs-on: github-hosted-small

steps:
- name: Harden the runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: block
policy: global-allowed-endpoints-policy

- name: Calculate Fetch Depth
if: inputs.lint_commits
id: fetch-depth
Expand Down Expand Up @@ -196,23 +188,15 @@ jobs:
release:
if: github.event_name == 'push' && github.ref == format('refs/heads/{0}', github.event.repository.default_branch)
name: Release Please
runs-on: ubuntu-latest
runs-on: github-hosted-small
outputs:
release_created: ${{ steps.release.outputs.release_created }}
release_tag: ${{ steps.release.outputs.tag_name }}
additional_tags: ${{ steps.additional_tags.outputs.tags }}
major_minor_tag: ${{ steps.additional_tags.outputs.major_minor_tag }}
major_tag: ${{ steps.additional_tags.outputs.major_tag }}
permissions:
id-token: write

steps:
- name: Harden the runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: block
policy: global-allowed-endpoints-policy

- uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0

- name: Merge default and user input changelog types
Expand Down
8 changes: 0 additions & 8 deletions .github/workflows/pr-scan.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,8 @@ on:
jobs:
scan:
runs-on: ${{ inputs.runs-on }}
permissions:
id-token: write

steps:
- name: Harden the runner
uses: step-security/harden-runner@95d9a5deda9de15063e7595e9719c11c38c90ae2 # v2.13.2
with:
egress-policy: block
policy: global-allowed-endpoints-policy

- name: Setup
shell: bash
run: |-
Expand Down
Loading