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

Changed to latest version of upstream to add Node 20 support #5

Merged
merged 11 commits into from
Feb 11, 2024
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Update Docker Registry Tag

A GitHub Action for adding tags to an existing image in a Docker Registry using Docker Registry API V2.
A GitHub Action for adding tags to an existing image in a Docker Registry using
Docker Registry API V2.

## Inputs

Expand All @@ -15,7 +16,7 @@ A GitHub Action for adding tags to an existing image in a Docker Registry using
## Workflow Example

```yaml
- uses: Theia-Scientific/update-registry-tag@v1
- uses: Theia-Scientific/update-registry-tag@v2
with:
registry: ghcr.io
token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ inputs:
description: 'New-line separated list of new tags'
required: true
runs:
using: 'node16'
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'tag'
Expand Down
16 changes: 6 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
},
"description": "Update Docker Registry",
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^18.7.13",
"@typescript-eslint/parser": "^5.35.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.22.0",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.9",
mikhail-vl marked this conversation as resolved.
Show resolved Hide resolved
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.36.1",
"eslint": "^7.17.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^26.8.7",
"jest": "^29.0.1",
Expand All @@ -20,11 +20,7 @@
"ts-jest": "^28.0.8",
"typescript": "^4.1.3"
},
"keywords": [
"actions",
"github-actions",
"docker"
],
"keywords": ["actions", "github-actions", "docker"],
"main": "dist/main.js",
"name": "update-registry-tag",
"scripts": {
Expand Down
Loading