Skip to content

Commit 41106db

Browse files
authored
Merge pull request #10 from DopplerHQ/watsonian/update-nodejs-version
Update NodeJS version
2 parents 0636e30 + ce247b4 commit 41106db

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ${{ matrix.os }}
66
strategy:
77
matrix:
8-
os: [ubuntu-latest, ubuntu-18.04, macos-latest, windows-latest, windows-2016]
8+
os: [ubuntu-latest, ubuntu-18.04, macos-latest, windows-latest, windows-2019]
99
name: Install the cli
1010
steps:
1111
- name: Checkout

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The [Doppler CLI](https://github.com/DopplerHQ/cli) is the official tool for int
77
Include this Action as a step in your workflow:
88

99
```
10-
uses: dopplerhq/cli-action@v1
10+
uses: dopplerhq/cli-action@v2
1111
```
1212

1313
You can see a live example of this Action [here](https://github.com/DopplerHQ/cli/blob/master/.github/workflows/cli-action.yml).
@@ -25,10 +25,10 @@ jobs:
2525
my-job:
2626
runs-on: ubuntu-latest
2727
steps:
28-
- name: Install CLI
29-
uses: dopplerhq/cli-action@v1
30-
- name: Do something with the CLI
31-
run: doppler secrets --only-names
32-
env:
33-
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }}
28+
- name: Install CLI
29+
uses: dopplerhq/cli-action@v2
30+
- name: Do something with the CLI
31+
run: doppler secrets --only-names
32+
env:
33+
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }}
3434
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ branding:
44
icon: 'download'
55
color: 'blue'
66
runs:
7-
using: 'node12'
7+
using: 'node16'
88
main: 'index.js'
99

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cli-action",
3-
"version": "1.0.2",
3+
"version": "2.0.0",
44
"description": "GitHub Action to install the Doppler CLI",
55
"main": "index.js",
66
"scripts": {
@@ -22,4 +22,4 @@
2222
"@actions/io": "^1.0.2",
2323
"@actions/tool-cache": "^1.6.0"
2424
}
25-
}
25+
}

0 commit comments

Comments
 (0)