diff options
author | ikoamu <ikoamu@gmail.com> | 2024-01-24 00:58:21 +0900 |
---|---|---|
committer | ikoamu <ikoamu@gmail.com> | 2024-01-24 00:58:21 +0900 |
commit | dc83e40efe39932b17ccf7ef74fdca5ed127c1e3 (patch) | |
tree | 9158fef37a45f7e0726d6654baaf5ecb51ca963d | |
parent | 6a546e32d5fa0c38b99fc00de0f6c3c155477be7 (diff) |
Update action.yml to use actions/checkout@v4
-rw-r--r-- | action.yml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -4,7 +4,10 @@ runs: using: "composite" steps: - name: Checkout this repo - uses: ./ + uses: actions/checkout@v4 + with: + repository: ${{ github.action_repository }} + path: "action" - name: "Checkout org file repo" uses: actions/checkout@v4 |