Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated github actions tools and dependencies #118

Merged
merged 1 commit into from
Mar 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ jobs:
# job can access it
#
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}

Expand Down Expand Up @@ -123,18 +123,18 @@ jobs:
# <default tag flag>: If you want to use the created Docker image as the default image, specify "default".
#
imageinfo:
- alpine:3.18,alpine:3.18,alpine,default
- alpine:3.19,alpine:3.19,alpine,default
- ubuntu:22.04,ubuntu:22.04,ubuntu

#
# Run building and pushing helper
#
steps:
- name: Checkout sources
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

#
# Login to avoid the Docker Hub rate limit
Expand All @@ -148,7 +148,7 @@ jobs:
#
- name: Login to DockerHub
if: ${{ github.event_name != 'pull_request' }}
uses: docker/login-action@v2
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESSTOKEN }}
Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
"dependencies": {
"@kubernetes/client-node": "^0.20.0",
"body-parser": "^1.20.2",
"config": "^3.3.9",
"config": "^3.3.11",
"cookie-parser": "~1.4.6",
"dateformat": "^4.6.3",
"debug": "~4.3.4",
"express": "^4.18.2",
"jose": "^5.1.1",
"k2hdkc": "^1.0.8",
"express": "^4.18.3",
"jose": "^5.2.3",
"k2hdkc": "^1.0.10",
"morgan": "~1.10.0",
"rotating-file-stream": "^3.1.1"
"rotating-file-stream": "^3.2.1"
},
"bin": {
"k2hr3-api": "./bin/www",
Expand All @@ -28,10 +28,10 @@
"test": "test"
},
"devDependencies": {
"chai": "^4.3.10",
"chai": "^4.4.1",
"chai-http": "^4.4.0",
"eslint": "^8.54.0",
"mocha": "^10.2.0",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"nyc": "^15.1.0"
},
"scripts": {
Expand Down