mirror of
https://code.forgejo.org/forgejo/runner.git
synced 2025-09-15 18:57:01 +00:00
ci: fix test failures caused by node24 usage in hello-world-javascript-action
This commit is contained in:
parent
7a31b6a55e
commit
5ca4fe0f99
3 changed files with 9 additions and 10 deletions
2
act/runner/testdata/issue-597/spelling.yaml
vendored
2
act/runner/testdata/issue-597/spelling.yaml
vendored
|
@ -15,7 +15,7 @@ jobs:
|
||||||
fetch-depth: 5
|
fetch-depth: 5
|
||||||
- name: My first true step
|
- name: My first true step
|
||||||
if: ${{endsWith('Hello world', 'ld')}}
|
if: ${{endsWith('Hello world', 'ld')}}
|
||||||
uses: https://github.com/actions/hello-world-javascript-action@main
|
uses: https://github.com/actions/hello-world-javascript-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: "Renst the Octocat"
|
who-to-greet: "Renst the Octocat"
|
||||||
- name: My second false step
|
- name: My second false step
|
||||||
|
|
9
act/runner/testdata/issue-598/spelling.yml
vendored
9
act/runner/testdata/issue-598/spelling.yml
vendored
|
@ -9,23 +9,22 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: My first false step
|
- name: My first false step
|
||||||
if: "endsWith('Hello world', 'o1')"
|
if: "endsWith('Hello world', 'o1')"
|
||||||
uses: https://github.com/actions/hello-world-javascript-action@main
|
uses: https://github.com/actions/hello-world-javascript-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: 'Mona the Octocat'
|
who-to-greet: 'Mona the Octocat'
|
||||||
- name: My first true step
|
- name: My first true step
|
||||||
if: "!endsWith('Hello world', 'od')"
|
if: "!endsWith('Hello world', 'od')"
|
||||||
uses: https://github.com/actions/hello-world-javascript-action@main
|
uses: https://github.com/actions/hello-world-javascript-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: "Renst the Octocat"
|
who-to-greet: "Renst the Octocat"
|
||||||
- name: My second false step
|
- name: My second false step
|
||||||
if: "endsWith('Hello world', 'o2')"
|
if: "endsWith('Hello world', 'o2')"
|
||||||
uses: https://github.com/actions/hello-world-javascript-action@main
|
uses: https://github.com/actions/hello-world-javascript-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: 'Act the Octocat'
|
who-to-greet: 'Act the Octocat'
|
||||||
- name: My third false step
|
- name: My third false step
|
||||||
if: "endsWith('Hello world', 'o2')"
|
if: "endsWith('Hello world', 'o2')"
|
||||||
uses: https://github.com/actions/hello-world-javascript-action@main
|
uses: https://github.com/actions/hello-world-javascript-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: 'Git the Octocat'
|
who-to-greet: 'Git the Octocat'
|
||||||
|
|
||||||
|
|
2
act/runner/testdata/parallel/push.yml
vendored
2
act/runner/testdata/parallel/push.yml
vendored
|
@ -9,7 +9,7 @@ jobs:
|
||||||
- uses: ./actions/action1
|
- uses: ./actions/action1
|
||||||
with:
|
with:
|
||||||
args: echo 'build'
|
args: echo 'build'
|
||||||
- uses: https://github.com/actions/hello-world-javascript-action@master
|
- uses: https://github.com/actions/hello-world-javascript-action@v1
|
||||||
with:
|
with:
|
||||||
who-to-greet: 'Mona the Octocat'
|
who-to-greet: 'Mona the Octocat'
|
||||||
test1:
|
test1:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue