1
0
mirror of synced 2026-01-07 18:01:41 -05:00

Remove version in local action syntax (#24646)

This commit is contained in:
ajaykn
2022-01-26 19:52:57 +09:00
committed by GitHub
parent e8a74820ed
commit b9d1c491b0
2 changed files with 3 additions and 3 deletions

View File

@@ -110,7 +110,7 @@ You can define inputs and secrets, which can be passed from the caller workflow
runs-on: ubuntu-latest
environment: production
steps:
- uses: ./.github/actions/my-action@v1
- uses: ./.github/actions/my-action
with:
username: ${{ inputs.username }}
token: ${{ secrets.envPAT }}
@@ -151,7 +151,7 @@ jobs:
name: Pass input and secrets to my-action
runs-on: ubuntu-latest
steps:
- uses: ./.github/actions/my-action@v1
- uses: ./.github/actions/my-action
with:
username: ${{ inputs.username }}
token: ${{ secrets.token }}