Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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]

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

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"
}
}
}