From 2804f530d20739eb0ffaeff61936e62d1520d800 Mon Sep 17 00:00:00 2001 From: Joel Watson Date: Wed, 12 Oct 2022 10:46:02 -0500 Subject: [PATCH 1/4] Bump node version to node16 --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 455c98c..c07eb72 100644 --- a/action.yml +++ b/action.yml @@ -4,6 +4,6 @@ branding: icon: 'download' color: 'blue' runs: - using: 'node12' + using: 'node16' main: 'index.js' From 37b4960f40bb75a7ea3e1add6fbaa8a44456d3b8 Mon Sep 17 00:00:00 2001 From: Joel Watson Date: Wed, 12 Oct 2022 12:16:50 -0500 Subject: [PATCH 2/4] Bumping action version to 2.0.0 --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 034bffc..c99acde 100644 --- a/package.json +++ b/package.json @@ -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": { @@ -22,4 +22,4 @@ "@actions/io": "^1.0.2", "@actions/tool-cache": "^1.6.0" } -} +} \ No newline at end of file From 239953a9b771d9c44511ac2e0805789b94f65b46 Mon Sep 17 00:00:00 2001 From: Joel Watson Date: Wed, 12 Oct 2022 14:48:50 -0500 Subject: [PATCH 3/4] Update README and package-lock.json versions --- README.md | 14 +++++++------- package-lock.json | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 4165a80..0cae0e1 100644 --- a/README.md +++ b/README.md @@ -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). @@ -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 }} ``` diff --git a/package-lock.json b/package-lock.json index fd62af5..ded1a31 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cli-action", - "version": "1.0.2", + "version": "2.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { @@ -59,4 +59,4 @@ "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==" } } -} +} \ No newline at end of file From ce247b4d021170e5ae51eda2aea8600bac9e550b Mon Sep 17 00:00:00 2001 From: Joel Watson Date: Wed, 12 Oct 2022 14:55:51 -0500 Subject: [PATCH 4/4] Switch to windows-2019 runner GitHub removed the windows-2016 runner on March 15, 2022: https://github.blog/changelog/2021-10-19-github-actions-the-windows-2016-runner-image-will-be-removed-from-github-hosted-runners-on-march-15-2022/ --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3b35e98..59b2479 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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