Compare commits

..

No commits in common. "main" and "v2.7" have entirely different histories.
main ... v2.7

20 changed files with 6660 additions and 1284 deletions

View file

@ -17,7 +17,7 @@ env:
jobs: jobs:
push-ghcr: push-ghcr:
name: Build and push image name: Build and push image
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -26,7 +26,7 @@ jobs:
steps: steps:
# Checkout push-to-registry action github repository # Checkout push-to-registry action github repository
- name: Checkout Push to Registry action - name: Checkout Push to Registry action
uses: actions/checkout@v4 uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest

View file

@ -9,18 +9,18 @@ jobs:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- run: npm ci - run: npm ci
- run: npm run lint - run: npm run lint
check-dist: check-dist:
name: Check Distribution name: Check Distribution
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
env: env:
BUNDLE_FILE: "dist/index.js" BUNDLE_FILE: "dist/index.js"
BUNDLE_COMMAND: "npm run bundle" BUNDLE_COMMAND: "npm run bundle"
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- name: Install - name: Install
run: npm ci run: npm ci
@ -33,11 +33,11 @@ jobs:
check-inputs-outputs: check-inputs-outputs:
name: Check Input and Output enums name: Check Input and Output enums
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
env: env:
IO_FILE: ./src/generated/inputs-outputs.ts IO_FILE: ./src/generated/inputs-outputs.ts
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm ci

View file

@ -17,7 +17,7 @@ env:
jobs: jobs:
push-ghcr: push-ghcr:
name: Build and push image name: Build and push image
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -26,7 +26,7 @@ jobs:
steps: steps:
# Checkout push-to-registry action github repository # Checkout push-to-registry action github repository
- name: Checkout Push to Registry action - name: Checkout Push to Registry action
uses: actions/checkout@v4 uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest

View file

@ -12,9 +12,9 @@ on:
jobs: jobs:
markdown-link-check: markdown-link-check:
name: Check links in markdown name: Check links in markdown
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- uses: gaurav-nelson/github-action-markdown-link-check@v1 - uses: gaurav-nelson/github-action-markdown-link-check@v1
with: with:
use-verbose-mode: true use-verbose-mode: true

View file

@ -17,7 +17,7 @@ env:
jobs: jobs:
push-quay: push-quay:
name: Build and push manifest name: Build and push manifest
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -26,7 +26,7 @@ jobs:
steps: steps:
# Checkout push-to-registry action github repository # Checkout push-to-registry action github repository
- name: Checkout Push to Registry action - name: Checkout Push to Registry action
uses: actions/checkout@v4 uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest
@ -51,7 +51,7 @@ jobs:
- name: Build Image - name: Build Image
id: build_image id: build_image
uses: redhat-actions/buildah-build@v2 uses: redhat-actions/buildah-build@main
with: with:
image: ${{ env.IMAGE_NAME }} image: ${{ env.IMAGE_NAME }}
tags: ${{ env.IMAGE_TAGS }} tags: ${{ env.IMAGE_TAGS }}

View file

@ -17,7 +17,7 @@ jobs:
build: build:
name: |- name: |-
Build with ${{ matrix.build_with }} and push${{ matrix.fully_qualified_image_name_tag && ' FQIN' || '' }} (latest: ${{ matrix.install_latest }}) Build with ${{ matrix.build_with }} and push${{ matrix.fully_qualified_image_name_tag && ' FQIN' || '' }} (latest: ${{ matrix.install_latest }})
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -29,7 +29,7 @@ jobs:
# Checkout push-to-registry action github repository # Checkout push-to-registry action github repository
- name: Checkout Push to Registry action - name: Checkout Push to Registry action
uses: actions/checkout@v4 uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest

View file

@ -17,7 +17,7 @@ env:
jobs: jobs:
push-quay: push-quay:
name: Build and push image name: Build and push image
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -26,7 +26,7 @@ jobs:
steps: steps:
# Checkout push-to-registry action github repository # Checkout push-to-registry action github repository
- name: Checkout Push to Registry action - name: Checkout Push to Registry action
uses: actions/checkout@v4 uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest

View file

@ -1,24 +1,24 @@
name: Vulnerability Scan with CRDA name: Vulnerability Scan with CRDA
on: on:
# push: push:
workflow_dispatch: workflow_dispatch:
# pull_request_target: pull_request_target:
# types: [ assigned, opened, synchronize, reopened, labeled, edited ] types: [ assigned, opened, synchronize, reopened, labeled, edited ]
# schedule: schedule:
# - cron: '0 0 * * *' # every day at midnight - cron: '0 0 * * *' # every day at midnight
jobs: jobs:
crda-scan: crda-scan:
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
name: Scan project vulnerability with CRDA name: Scan project vulnerability with CRDA
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- name: Setup Node - name: Setup Node
uses: actions/setup-node@v4 uses: actions/setup-node@v2
with: with:
node-version: '20' node-version: '14'
- name: Install CRDA - name: Install CRDA
uses: redhat-actions/openshift-tools-installer@v1 uses: redhat-actions/openshift-tools-installer@v1

View file

@ -17,7 +17,7 @@ env:
jobs: jobs:
login-and-push: login-and-push:
name: Login and push image to Quay.io name: Login and push image to Quay.io
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -27,7 +27,7 @@ jobs:
# Checkout push-to-registry action github repository # Checkout push-to-registry action github repository
- name: Checkout Push to Registry action - name: Checkout Push to Registry action
uses: actions/checkout@v4 uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest

View file

@ -1,8 +1,5 @@
# push-to-registry Changelog # push-to-registry Changelog
## v2.8
- Update action to run on Node20. https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
## v2.7.1 ## v2.7.1
- Don't add docker.io prefix to ECR images. [#69](https://github.com/redhat-actions/push-to-registry/pull/69) - Don't add docker.io prefix to ECR images. [#69](https://github.com/redhat-actions/push-to-registry/pull/69)

View file

@ -101,10 +101,10 @@ on: [ push ]
jobs: jobs:
build: build:
name: Build and push image name: Build and push image
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v2
- name: Build Image - name: Build Image
id: build-image id: build-image
@ -144,13 +144,13 @@ If the image to push is present in both the Docker and Podman image storage, the
If the action pulled an image from the Docker image storage into the Podman storage, it will be cleaned up from the Podman storage before the action exits. If the action pulled an image from the Docker image storage into the Podman storage, it will be cleaned up from the Podman storage before the action exits.
## Note about GitHub runners and Podman ## Note about GitHub runners and Podman
We recommend using `runs-on: ubuntu-22.04` since it has a newer version of Podman. We recommend using `runs-on: ubuntu-20.04` since it has a newer version of Podman.
If you are on `ubuntu-20.04` or any other older versions of ubuntu your workflow will use an older version of Podman and may encounter issues such as [#26](https://github.com/redhat-actions/push-to-registry/issues/26). If you are on `ubuntu-18.04` or any other older versions of ubuntu your workflow will use an older version of Podman and may encounter issues such as [#26](https://github.com/redhat-actions/push-to-registry/issues/26).
## Troubleshooting ## Troubleshooting
Note that quay.io repositories are private by default.<br> Note that quay.io repositories are private by default.<br>
This means that if you push an image for the first time, you will have to authenticate before pulling it, or go to the repository's settings and change its visibility. This means that if you push an image for the first time, you will have to authenticate before pulling it, or go to the repository's settings and change its visibility.
Similarly, if you receive a 403 Forbidden from GHCR, you may have to update the Package Settings. Refer to [this issue](https://github.com/redhat-actions/push-to-registry/issues/52). Simiarly, if you receive a 403 Forbidden from GHCR, you may have to update the Package Settings. Refer to [this issue](https://github.com/redhat-actions/push-to-registry/issues/52).

View file

@ -11,7 +11,7 @@ inputs:
tags: tags:
description: | description: |
'The tag or tags of the image/manifest to push. 'The tag or tags of the image/manifest to push.
For multiple tags, separate by whitespace. For example, "latest v1"' For multiple tags, seperate by whitespace. For example, "latest v1"'
required: false required: false
default: 'latest' default: 'latest'
registry: registry:
@ -47,5 +47,5 @@ outputs:
registry-paths: registry-paths:
description: 'A JSON array of registry paths to which the tag(s) were pushed' description: 'A JSON array of registry paths to which the tag(s) were pushed'
runs: runs:
using: 'node20' using: 'node16'
main: 'dist/index.js' main: 'dist/index.js'

4
dist/index.js vendored

File diff suppressed because one or more lines are too long

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

3911
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,6 @@
{ {
"name": "push-to-registry", "name": "push-to-registry",
"version": "2.0.0", "version": "0.0.1",
"description": "Action to push images to registry", "description": "Action to push images to registry",
"main": "index.js", "main": "index.js",
"scripts": { "scripts": {
@ -8,27 +8,26 @@
"bundle": "ncc build src/index.ts --source-map --minify", "bundle": "ncc build src/index.ts --source-map --minify",
"clean": "rm -rf out/ dist/", "clean": "rm -rf out/ dist/",
"lint": "eslint . --max-warnings=0", "lint": "eslint . --max-warnings=0",
"generate-ios": "npx action-io-generator -w -o ./src/generated/inputs-outputs.ts",
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"author": "Red Hat", "author": "Red Hat",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.10.1", "@actions/core": "^1.9.1",
"@actions/exec": "^1.1.1", "@actions/exec": "^1.1.0",
"@actions/io": "^1.1.3", "@actions/io": "^1.0.2",
"ini": "^4.1.2" "ini": "^2.0.0"
}, },
"devDependencies": { "devDependencies": {
"@redhat-actions/action-io-generator": "^1.5.0", "@redhat-actions/action-io-generator": "^1.5.0",
"@redhat-actions/eslint-config": "^1.3.2", "@redhat-actions/eslint-config": "^1.3.2",
"@redhat-actions/tsconfig": "^1.2.0", "@redhat-actions/tsconfig": "^1.1.1",
"@types/ini": "^4.1.0", "@types/ini": "^1.3.30",
"@types/node": "^20.11.24", "@types/node": "^12.12.7",
"@typescript-eslint/eslint-plugin": "^7.1.1", "@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^7.1.1", "@typescript-eslint/parser": "^4.22.0",
"@vercel/ncc": "^0.38.1", "@vercel/ncc": "^0.25.1",
"eslint": "^8.57.0", "eslint": "^7.18.0",
"typescript": "5.3" "typescript": "4.2"
} }
} }

View file

@ -35,7 +35,7 @@ export enum Inputs {
REGISTRY = "registry", REGISTRY = "registry",
/** /**
* 'The tag or tags of the image/manifest to push. * 'The tag or tags of the image/manifest to push.
* For multiple tags, separate by whitespace. For example, "latest v1"' * For multiple tags, seperate by whitespace. For example, "latest v1"'
* Required: false * Required: false
* Default: "latest" * Default: "latest"
*/ */

View file

@ -310,9 +310,7 @@ async function pullImageFromDocker(): Promise<ImageStorageCheckResult> {
} }
} }
catch (err) { catch (err) {
if (err instanceof Error) { core.warning(err);
core.debug(err.message);
}
} }
return { return {
@ -342,9 +340,7 @@ async function checkImageInPodman(): Promise<ImageStorageCheckResult> {
} }
} }
catch (err) { catch (err) {
if (err instanceof Error) { core.debug(err);
core.debug(err.message);
}
} }
return { return {

View file

@ -54,9 +54,7 @@ export async function findFuseOverlayfsPath(): Promise<string | undefined> {
fuseOverlayfsPath = await io.which("fuse-overlayfs"); fuseOverlayfsPath = await io.which("fuse-overlayfs");
} }
catch (err) { catch (err) {
if (err instanceof Error) { core.debug(err);
core.debug(err.message);
}
} }
return fuseOverlayfsPath; return fuseOverlayfsPath;