From b4f9eef7f4a90d3c38b1f83e01dbe372db013e38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=B3bert=20Papp=20=28TWiStErRob=29?= Date: Sat, 4 Jun 2022 11:00:46 +0100 Subject: [PATCH] Fix actions/toolkit#932 using https://github.blog/changelog/2022-01-25-github-actions-reusable-workflows-can-be-referenced-locally/ --- .github/workflows/CI.yml | 4 ++-- .github/workflows/Scheduled.yml | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 4050405..9187851 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -22,7 +22,7 @@ jobs: test-all: name: 'Tests' - uses: TWiStErRob/net.twisterrob.healthcheck/.github/workflows/tests-run.yml@master + uses: ./.github/workflows/tests-run.yml with: name: 'All' test-task: ':test' @@ -30,7 +30,7 @@ jobs: test-smoke: name: 'Tests' - uses: TWiStErRob/net.twisterrob.healthcheck/.github/workflows/tests-run.yml@master + uses: ./.github/workflows/tests-run.yml with: name: 'Smoke' test-task: ':smokeTest' diff --git a/.github/workflows/Scheduled.yml b/.github/workflows/Scheduled.yml index 74db45a..657dd88 100644 --- a/.github/workflows/Scheduled.yml +++ b/.github/workflows/Scheduled.yml @@ -9,7 +9,7 @@ on: jobs: test-cinema: name: 'Tests' - uses: TWiStErRob/net.twisterrob.healthcheck/.github/workflows/tests-run.yml@master + uses: ./.github/workflows/tests-run.yml with: name: 'cinema.twisterrob.net' test-task: ':test' @@ -17,7 +17,7 @@ jobs: test-regex: name: 'Tests' - uses: TWiStErRob/net.twisterrob.healthcheck/.github/workflows/tests-run.yml@master + uses: ./.github/workflows/tests-run.yml with: name: 'regex.twisterrob.net' test-task: ':test' @@ -25,7 +25,7 @@ jobs: test-web: name: 'Tests' - uses: TWiStErRob/net.twisterrob.healthcheck/.github/workflows/tests-run.yml@master + uses: ./.github/workflows/tests-run.yml with: name: 'www.twisterrob.net' test-task: ':test' @@ -33,7 +33,7 @@ jobs: test-uw: name: 'Tests' - uses: TWiStErRob/net.twisterrob.healthcheck/.github/workflows/tests-run.yml@master + uses: ./.github/workflows/tests-run.yml with: name: 'twisterrob.uw.hu' test-task: ':test'