This repository was archived by the owner on May 14, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 6 files changed +16
-10
lines changed Expand file tree Collapse file tree 6 files changed +16
-10
lines changed Original file line number Diff line number Diff line change
1
+ version : 2
2
+ updates :
3
+ - package-ecosystem : " github-actions"
4
+ directory : " /"
5
+ schedule :
6
+ interval : " monthly"
Original file line number Diff line number Diff line change 23
23
- name : Checkout
24
24
uses : actions/checkout@v3
25
25
- id : get_step
26
- run : echo "::set-output name= current_step:: $(cat ./.github/steps/-step.txt)"
26
+ run : echo "current_step= $(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
27
27
outputs :
28
28
current_step : ${{ steps.get_step.outputs.current_step }}
29
29
43
43
steps :
44
44
# We'll need to check out the repository so that we can edit the README.
45
45
- name : Checkout
46
- uses : actions/checkout@v2
46
+ uses : actions/checkout@v3
47
47
with :
48
48
fetch-depth : 0 # Let's get all the branches.
49
49
Original file line number Diff line number Diff line change 31
31
- name : Checkout
32
32
uses : actions/checkout@v3
33
33
- id : get_step
34
- run : echo "::set-output name= current_step:: $(cat ./.github/steps/-step.txt)"
34
+ run : echo "current_step= $(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
35
35
outputs :
36
36
current_step : ${{ steps.get_step.outputs.current_step }}
37
37
51
51
steps :
52
52
# We'll need to check out the repository so that we can edit the README.
53
53
- name : Checkout
54
- uses : actions/checkout@v2
54
+ uses : actions/checkout@v3
55
55
56
56
# Verify the learner added the file contents.
57
57
- name : Check workflow contents, jobs
Original file line number Diff line number Diff line change 29
29
runs-on : ubuntu-latest
30
30
steps :
31
31
- name : Checkout
32
- uses : actions/checkout@v2
32
+ uses : actions/checkout@v3
33
33
- id : get_step
34
- run : echo "::set-output name= current_step:: $(cat ./.github/steps/-step.txt)"
34
+ run : echo "current_step= $(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
35
35
outputs :
36
36
current_step : ${{ steps.get_step.outputs.current_step }}
37
37
Original file line number Diff line number Diff line change 29
29
runs-on : ubuntu-latest
30
30
steps :
31
31
- name : Checkout
32
- uses : actions/checkout@v2
32
+ uses : actions/checkout@v3
33
33
- id : get_step
34
- run : echo "::set-output name= current_step:: $(cat ./.github/steps/-step.txt)"
34
+ run : echo "current_step= $(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
35
35
outputs :
36
36
current_step : ${{ steps.get_step.outputs.current_step }}
37
37
Original file line number Diff line number Diff line change 30
30
- name : Checkout
31
31
uses : actions/checkout@v3
32
32
- id : get_step
33
- run : echo "::set-output name= current_step:: $(cat ./.github/steps/-step.txt)"
33
+ run : echo "current_step= $(cat ./.github/steps/-step.txt)" >> $GITHUB_OUTPUT
34
34
outputs :
35
35
current_step : ${{ steps.get_step.outputs.current_step }}
36
36
50
50
steps :
51
51
# We'll need to check out the repository so that we can edit the README.
52
52
- name : Checkout
53
- uses : actions/checkout@v2
53
+ uses : actions/checkout@v3
54
54
with :
55
55
fetch-depth : 0 # Let's get all the branches.
56
56
You can’t perform that action at this time.
0 commit comments