Skip to content

Commit

Permalink
upgrades the runtime to node20, now that 16 is EoL (#344)
Browse files Browse the repository at this point in the history
* upgrade to node20
* upgrade actions/checkout
  • Loading branch information
bkendall committed Apr 15, 2024
1 parent 120e124 commit ac8041b
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check-build.yml
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-preview-with-version.yml
Expand Up @@ -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: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-preview.yml
Expand Up @@ -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: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-production.yml
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Expand Up @@ -19,7 +19,7 @@ branding:
icon: "globe"
color: "blue"
runs:
using: "node16"
using: "node20"
main: "bin/action.min.js"
inputs:
repoToken:
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -36,5 +36,5 @@
"pre-commit": "pretty-quick --staged && npm run build"
}
},
"version": "0.7.1"
"version": "0.8.0"
}

0 comments on commit ac8041b

Please sign in to comment.