Skip to content
This repository has been archived by the owner on Apr 22, 2024. It is now read-only.

Commit

Permalink
Remove ACTION_REF and ACTION_REPO action inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 authored Feb 29, 2024
1 parent e2fbaa4 commit 33aa5bf
Showing 1 changed file with 2 additions and 10 deletions.
12 changes: 2 additions & 10 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,6 @@ inputs:
SECURE_BOOT_KEY_URL:
description: Secure boot key that is installed from URL location
required: false
ACTION_REPO:
description: Repository with the build action
required: false
default: ${{ github.repository }}
ACTION_REF:
description: Repository ref for the build action
required: false
default: ${{ github.ref }}

outputs:
output-directory:
Expand Down Expand Up @@ -85,8 +77,8 @@ runs:
- name: Checkout repository
uses: actions/checkout@v4
with:
repository: ${{ inputs.ACTION_REPO }}
ref: ${{ inputs.ACTION_REF }}
repository: ${{ github.github.action_repository }}
ref: ${{ github.action_ref }}
submodules: recursive

- name: Install dependencies
Expand Down

0 comments on commit 33aa5bf

Please sign in to comment.