Skip to content

Commit

Permalink
feat: update all the packages to latest, node16 action (#407)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: Allow teams to upgrade to major version change on runtime
as they see fit
  • Loading branch information
edwinf authored May 24, 2023
1 parent eed1c73 commit 7a5e8b9
Show file tree
Hide file tree
Showing 11 changed files with 18,621 additions and 12,193 deletions.
1 change: 1 addition & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
"project": "./tsconfig.json"
},
"rules": {
"i18n-text/no-en": "off",
"eslint-comments/no-use": "off",
"import/no-namespace": "off",
"no-unused-vars": "off",
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build: # make sure build/ci work properly
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- run: |
npm install
- run: |
Expand All @@ -21,10 +21,10 @@ jobs:
test: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 0.13
terraform_wrapper: false
Expand All @@ -51,10 +51,10 @@ jobs:
test2:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 0.13
terraform_wrapper: false
Expand All @@ -72,7 +72,7 @@ jobs:
report-title: Single Argument Run Second Job
save-directory: ./artifacts

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: terraform-output
path: ./artifacts/*
Expand All @@ -81,12 +81,12 @@ jobs:
runs-on: ubuntu-latest
needs: [build, test]
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Release
uses: cycjimmy/semantic-release-action@v2
uses: cycjimmy/semantic-release-action@v3
id: semantic-release
with:
extra_plugins: |
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ inputs:
description: 'The directory path to store the full stdout / stderr from the terraform plan execution. A std.out and std.err file will be created with the data.'
default: ''
runs:
using: 'node12'
using: 'node16'
main: 'dist/index.js'
Loading

0 comments on commit 7a5e8b9

Please # to comment.