matrix-art

An image gallery for Matrix
git clone git://archive.git.mtrnord.blog/MTRNord/matrix-art.git
Log | Files | Refs | README | LICENSE

commit 498f99d40cd9eadec589ae73ee746ecd68616c16
parent 13e0776c2ddff32d8f973a56197664d282306dc2
Author: MTRNord <mtrnord1@gmail.com>
Date:   Tue,  1 Mar 2022 01:20:05 +0100

Run on the selfhosted runners instead

Diffstat:
M.github/workflows/deploy.yml | 2+-
M.github/workflows/fossa.yml | 2+-
M.github/workflows/playwright.yml | 2+-
M.github/workflows/scorecards-analysis.yml | 6+++---
M.github/workflows/spell-check.yml | 2+-
5 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml @@ -9,7 +9,7 @@ permissions: read-all jobs: deploy: - runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: Harden Runner uses: step-security/harden-runner@14dc64f30986eaa2ad2dddcec073f5aab18e5a24 # v1 diff --git a/.github/workflows/fossa.yml b/.github/workflows/fossa.yml @@ -5,7 +5,7 @@ on: branches: [main] jobs: fossa-scan: - runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: Harden Runner uses: step-security/harden-runner@14dc64f30986eaa2ad2dddcec073f5aab18e5a24 # v1 diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml @@ -11,7 +11,7 @@ jobs: permissions: contents: read # for actions/checkout to fetch code timeout-minutes: 60 - runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: Harden Runner uses: step-security/harden-runner@14dc64f30986eaa2ad2dddcec073f5aab18e5a24 # v1 diff --git a/.github/workflows/scorecards-analysis.yml b/.github/workflows/scorecards-analysis.yml @@ -3,9 +3,9 @@ on: # Only the default branch is supported. branch_protection_rule: schedule: - - cron: '15 7 * * 0' + - cron: "15 7 * * 0" push: - branches: [ main ] + branches: [main] # Declare default permissions as read only. permissions: read-all @@ -13,7 +13,7 @@ permissions: read-all jobs: analysis: name: Scorecards analysis - runs-on: ubuntu-latest + runs-on: self-hosted permissions: # Needed to upload the results to code-scanning dashboard. security-events: write diff --git a/.github/workflows/spell-check.yml b/.github/workflows/spell-check.yml @@ -13,7 +13,7 @@ jobs: permissions: contents: read # for actions/checkout to fetch code name: Spell Check with Typos - runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: Harden Runner uses: step-security/harden-runner@14dc64f30986eaa2ad2dddcec073f5aab18e5a24 # v1