-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from cgrothaus/use-node20-for-github-action
Use node20 for GitHub action
- Loading branch information
Showing
8 changed files
with
39 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -84,7 +84,7 @@ The default configuration installs the latest version of SetOps CLI and a wrappe | |
```yaml | ||
steps: | ||
- uses: setopsco/github-actions/setup@v3 | ||
- uses: setopsco/github-actions/setup@v4 | ||
with: | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
``` | ||
|
@@ -93,7 +93,7 @@ A specific version of SetOps CLI can be installed: | |
|
||
```yaml | ||
steps: | ||
- uses: setopsco/github-actions/setup@v3 | ||
- uses: setopsco/github-actions/setup@v4 | ||
with: | ||
setops_version: 1.0.0 | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
|
@@ -103,7 +103,7 @@ Credentials for SetOps can be configured: | |
```yaml | ||
steps: | ||
- uses: setopsco/github-actions/setup@v3 | ||
- uses: setopsco/github-actions/setup@v4 | ||
with: | ||
setops_organization: <yourorganization> | ||
setops_username: [email protected] | ||
|
@@ -130,10 +130,10 @@ jobs: | |
image-tag: ${{ steps.build_and_push_image.outputs.image-tag }} | ||
steps: | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: "Build image and push it to SetOps image registry" | ||
id: build_and_push_image | ||
uses: setopsco/github-actions/build-and-push-image@v3 | ||
uses: setopsco/github-actions/build-and-push-image@v4 | ||
with: | ||
setops-organization: <yourorganization> | ||
setops-username: ${{ secrets.SETOPS_USER }} | ||
|
@@ -167,10 +167,10 @@ deploy: | |
needs: build | ||
steps: | ||
- name: "Checkout repository" | ||
uses: actions/checkout@v3 | ||
uses: actions/checkout@v4 | ||
- name: "Deploy project on SetOps" | ||
id: deploy | ||
uses: setopsco/github-actions/deployment@v3 | ||
uses: setopsco/github-actions/deployment@v4 | ||
with: | ||
setops-organization: <yourorganization> | ||
setops-username: ${{ secrets.SETOPS_USER }} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters