Skip to content

Commit

Permalink
Merge pull request #10 from DopplerHQ/watsonian/update-nodejs-version
Browse files Browse the repository at this point in the history
Update NodeJS version
  • Loading branch information
watsonian committed Oct 12, 2022
2 parents 0636e30 + ce247b4 commit 41106db
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, ubuntu-18.04, macos-latest, windows-latest, windows-2016]
os: [ubuntu-latest, ubuntu-18.04, macos-latest, windows-latest, windows-2019]
name: Install the cli
steps:
- name: Checkout
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ The [Doppler CLI](https://github.com/DopplerHQ/cli) is the official tool for int
Include this Action as a step in your workflow:

```
uses: dopplerhq/cli-action@v1
uses: dopplerhq/cli-action@v2
```

You can see a live example of this Action [here](https://github.com/DopplerHQ/cli/blob/master/.github/workflows/cli-action.yml).
Expand All @@ -25,10 +25,10 @@ jobs:
my-job:
runs-on: ubuntu-latest
steps:
- name: Install CLI
uses: dopplerhq/cli-action@v1
- name: Do something with the CLI
run: doppler secrets --only-names
env:
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }}
- name: Install CLI
uses: dopplerhq/cli-action@v2
- name: Do something with the CLI
run: doppler secrets --only-names
env:
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }}
```
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ branding:
icon: 'download'
color: 'blue'
runs:
using: 'node12'
using: 'node16'
main: 'index.js'

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cli-action",
"version": "1.0.2",
"version": "2.0.0",
"description": "GitHub Action to install the Doppler CLI",
"main": "index.js",
"scripts": {
Expand All @@ -22,4 +22,4 @@
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.0"
}
}
}

0 comments on commit 41106db

Please sign in to comment.