You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+16-9Lines changed: 16 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -25,14 +25,21 @@ jobs:
25
25
26
26
steps:
27
27
- uses: actions/checkout@v2
28
-
- uses: php-actions/composer@v5
28
+
- uses: php-actions/composer@v6
29
29
# ... then your own project steps ...
30
30
```
31
31
32
+
### Version numbers
33
+
34
+
This action is released with semantic version numbers, but also tagged so the latest major release's tag always points to the latest release within the matching major version.
35
+
36
+
Please feel free to use `uses: php-actions/composer@v6` to always run the latest version of v6, or `uses: php-actions/composer@v6.0.0` to specify the exact release.
37
+
38
+
32
39
Running custom commands
33
40
-----------------------
34
41
35
-
By default, adding `- uses: php-actions/composer@v5` into your workflow will run `composer install`, as `install` is the default command name. The install command will be provided with a default set of arguments (see below).
42
+
By default, adding `- uses: php-actions/composer@v6` into your workflow will run `composer install`, as `install` is the default command name. The install command will be provided with a default set of arguments (see below).
36
43
37
44
You can issue custom commands by passing a `command` input, like so:
4) Now, any connections Composer makes to Github.com will use your HTTP basic auth credentials, which is essentially the same as being logged in as you, so your private repositories will now be available to Composer.
0 commit comments