From ac8041b3b04337509168113bf98b95879df22322 Mon Sep 17 00:00:00 2001 From: Bryan Kendall Date: Mon, 15 Apr 2024 06:52:25 -0700 Subject: [PATCH] upgrades the runtime to node20, now that 16 is EoL (#344) * upgrade to node20 * upgrade actions/checkout --- .github/workflows/check-build.yml | 2 +- .github/workflows/deploy-preview-with-version.yml | 2 +- .github/workflows/deploy-preview.yml | 2 +- .github/workflows/deploy-production.yml | 2 +- .github/workflows/test.yml | 2 +- README.md | 4 ++-- action.yml | 2 +- package.json | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/check-build.yml b/.github/workflows/check-build.yml index 832b19ba..0eefa820 100644 --- a/.github/workflows/check-build.yml +++ b/.github/workflows/check-build.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies run: npm ci - name: Build diff --git a/.github/workflows/deploy-preview-with-version.yml b/.github/workflows/deploy-preview-with-version.yml index d5a3e3d6..bc312952 100644 --- a/.github/workflows/deploy-preview-with-version.yml +++ b/.github/workflows/deploy-preview-with-version.yml @@ -20,7 +20,7 @@ jobs: preview: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Deploy to Firebase Hosting preview channel id: firebase_hosting_preview uses: ./ diff --git a/.github/workflows/deploy-preview.yml b/.github/workflows/deploy-preview.yml index 2238eff8..f7ba034a 100644 --- a/.github/workflows/deploy-preview.yml +++ b/.github/workflows/deploy-preview.yml @@ -20,7 +20,7 @@ jobs: preview: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Deploy to Firebase Hosting preview channel id: firebase_hosting_preview uses: ./ diff --git a/.github/workflows/deploy-production.yml b/.github/workflows/deploy-production.yml index 7141bbe2..815a9d75 100644 --- a/.github/workflows/deploy-production.yml +++ b/.github/workflows/deploy-production.yml @@ -9,7 +9,7 @@ jobs: deploy_website: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # - run: npm run build - uses: ./ with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 70228ab0..fe4059c4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,7 +20,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Install dependencies run: npm ci - name: Check that Prettier was run diff --git a/README.md b/README.md index 4ffa40dc..c516cd93 100644 --- a/README.md +++ b/README.md @@ -43,7 +43,7 @@ jobs: build_and_preview: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Add any build steps here. For example: # - run: npm ci && npm run build - uses: FirebaseExtended/action-hosting-deploy@v0 @@ -73,7 +73,7 @@ jobs: deploy_live_website: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 # Add any build steps here. For example: # - run: npm ci && npm run build - uses: FirebaseExtended/action-hosting-deploy@v0 diff --git a/action.yml b/action.yml index 6566c985..8d1ca69f 100644 --- a/action.yml +++ b/action.yml @@ -19,7 +19,7 @@ branding: icon: "globe" color: "blue" runs: - using: "node16" + using: "node20" main: "bin/action.min.js" inputs: repoToken: diff --git a/package.json b/package.json index 7f7041e8..652f317a 100644 --- a/package.json +++ b/package.json @@ -36,5 +36,5 @@ "pre-commit": "pretty-quick --staged && npm run build" } }, - "version": "0.7.1" + "version": "0.8.0" }