From ac3f01af185e507cb660c6d599e9c4a2b24b37d0 Mon Sep 17 00:00:00 2001 From: edwardowens Date: Mon, 9 Dec 2024 21:38:34 -0800 Subject: [PATCH] feat: Moving actions into root dir. --- .github/workflows/go-test.yml | 16 ++++++++-------- .../go-coverage => go-coverage}/action.yml | 0 {.github/actions/go-test => go-test}/action.yml | 0 {.github/actions/go => go}/action.yml | 0 4 files changed, 8 insertions(+), 8 deletions(-) rename {.github/actions/go-coverage => go-coverage}/action.yml (100%) rename {.github/actions/go-test => go-test}/action.yml (100%) rename {.github/actions/go => go}/action.yml (100%) diff --git a/.github/workflows/go-test.yml b/.github/workflows/go-test.yml index 5c9c394..2e5707e 100644 --- a/.github/workflows/go-test.yml +++ b/.github/workflows/go-test.yml @@ -46,22 +46,22 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Checkout Skiff actions + name: Checkout with: - repository: '${{ env.ACTIONS_REPO }}' - path: './skiff-actions' - ref: ${{ inputs.workflow-ref }} token: '${{ github.token }}' - uses: actions/checkout@v4 - name: Checkout + name: Checkout Skiff actions with: + repository: '${{ env.ACTIONS_REPO }}' + path: './.github/gh-actions' + ref: ${{ inputs.workflow-ref }} token: '${{ github.token }}' - - uses: ./skiff-actions/.github/actions/go + - uses: .github/gh-actions/go name: Setup go - - uses: ./skiff-actions/.github/actions/go-test + - uses: .github/gh-actions/go-test with: dirs: ${{ inputs.dirs }} - - uses: ./skiff-actions/.github/actions/go-coverage + - uses: .github/gh-actions/go-coverage with: ref-name: ${{ inputs.ref-name }} go-cover-path: ${{ inputs.go-cover-path }} diff --git a/.github/actions/go-coverage/action.yml b/go-coverage/action.yml similarity index 100% rename from .github/actions/go-coverage/action.yml rename to go-coverage/action.yml diff --git a/.github/actions/go-test/action.yml b/go-test/action.yml similarity index 100% rename from .github/actions/go-test/action.yml rename to go-test/action.yml diff --git a/.github/actions/go/action.yml b/go/action.yml similarity index 100% rename from .github/actions/go/action.yml rename to go/action.yml