File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3333
3434``` yaml
3535 - name : Run the Action
36- uses : devops-infra/template-action@v0
36+ uses : devops-infra/template-action@v1
3737 env :
3838 barfoo : foobaz
3939 with :
7979 runs-on : ubuntu-latest
8080 steps :
8181 - uses : actions/checkout@v5
82- - uses : devops-infra/template-action@v0
82+ - uses : devops-infra/template-action@v1
8383` ` `
8484
8585### 🔀 Advanced
@@ -93,14 +93,15 @@ jobs:
9393 runs-on : ubuntu-latest
9494 steps :
9595 - uses : actions/checkout@v5
96- - uses : devops-infra/template-action@v0
96+ - uses : devops-infra/template-action@v1
9797 with :
9898 foobar : hello
9999 debug : ' true'
100100` ` `
101101
102102### 🎯 Use specific version
103103Run the Action with a specific version tag.
104+
104105` ` ` yaml
105106name : Run the Action on each commit
106107on : [push]
@@ -109,7 +110,15 @@ jobs:
109110 runs-on : ubuntu-latest
110111 steps :
111112 - uses : actions/checkout@v5
112- - uses : devops-infra/template-action@v0.1.2
113+
114+ - uses : devops-infra/template-action@v1.0.0
115+ id : Pin patch version
116+
117+ - uses : devops-infra/template-action@v1.0
118+ id : Pin minor version
119+
120+ - uses : devops-infra/template-action@v1
121+ id : Pin major version
113122` ` `
114123
115124
Original file line number Diff line number Diff line change 11version : ' 3'
22
3- silent : false
3+ silent : true
44
55includes :
66 variables : ./Taskfile.variables.yml
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ outputs:
2020 description : Echo of input 'foobar'
2121runs :
2222 using : docker
23- image : docker://devopsinfra/template-action:v0.1.2
23+ image : docker://devopsinfra/template-action:v1.0.0
2424branding :
2525 color : purple
2626 icon : upload-cloud
You can’t perform that action at this time.
0 commit comments