fix: ci is failing since 2022-10-17 (#1397)
* Update push.yml * Update main.yaml * Update action.yml
This commit is contained in:
parent
ff5e289804
commit
5d2eb1f238
3 changed files with 4 additions and 4 deletions
2
pkg/runner/testdata/issue-104/main.yaml
vendored
2
pkg/runner/testdata/issue-104/main.yaml
vendored
|
@ -10,6 +10,6 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
|
|
||||||
- name: hello
|
- name: hello
|
||||||
uses: actions/hello-world-docker-action@master
|
uses: actions/hello-world-docker-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: "World"
|
who-to-greet: "World"
|
||||||
|
|
|
@ -32,7 +32,7 @@ runs:
|
||||||
shell: bash
|
shell: bash
|
||||||
- uses: ./localdockerimagetest_
|
- uses: ./localdockerimagetest_
|
||||||
# Also test a remote docker action here
|
# Also test a remote docker action here
|
||||||
- uses: actions/hello-world-docker-action@main
|
- uses: actions/hello-world-docker-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: 'Mona the Octocat'
|
who-to-greet: 'Mona the Octocat'
|
||||||
# Test if GITHUB_ACTION_PATH is set correctly after all steps
|
# Test if GITHUB_ACTION_PATH is set correctly after all steps
|
||||||
|
|
|
@ -5,6 +5,6 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/hello-world-docker-action@main
|
- uses: actions/hello-world-docker-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: 'Mona the Octocat'
|
who-to-greet: 'Mona the Octocat'
|
||||||
|
|
Loading…
Reference in a new issue