Compare commits

..

No commits in common. "main" and "v1.4" have entirely different histories.
main ... v1.4

14 changed files with 6361 additions and 3345 deletions

View file

@ -8,21 +8,21 @@ on:
jobs: jobs:
lint: lint:
name: Run ESLint name: Run ESLint
runs-on: ubuntu-22.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
@ -35,11 +35,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

@ -15,7 +15,7 @@ env:
jobs: jobs:
podman-pull: podman-pull:
name: Log in and pull image with Podman name: Log in and pull image with Podman
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
@ -23,7 +23,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest
@ -43,14 +43,14 @@ jobs:
buildah-pull: buildah-pull:
name: Log in and pull image with Buildah name: Log in and pull image with Buildah
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
install_latest: [ true, false ] install_latest: [ true, false ]
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v2
- name: Install latest podman - name: Install latest podman
if: matrix.install_latest if: matrix.install_latest
@ -69,14 +69,14 @@ jobs:
docker-pull: docker-pull:
name: Log in and pull image with Docker name: Log in and pull image with Docker
runs-on: ubuntu-22.04 runs-on: ubuntu-20.04
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
install_latest: [ true, false ] install_latest: [ true, false ]
steps: steps:
- uses: actions/checkout@v3 - 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

@ -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@v2 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

3
.gitignore vendored
View file

@ -1,3 +1,2 @@
node_modules/ node_modules/
out/ out/
.idea/

View file

@ -1,14 +1,5 @@
# podman-login Changelog # podman-login Changelog
## v1.7
- Update action to run on Node20.https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/
## v1.6
- Update action/core dependency to 1.10.0
## v1.5
- Update action to run on Node16. https://github.blog/changelog/2022-05-20-actions-can-now-run-in-a-node-js-16-runtime/
## v1.4 ## v1.4
- Add ability to login to AWS ECR repositories. More details at https://github.com/redhat-actions/podman-login/issues/23 - Add ability to login to AWS ECR repositories. More details at https://github.com/redhat-actions/podman-login/issues/23

View file

@ -25,6 +25,6 @@ inputs:
default: 'true' default: 'true'
runs: runs:
using: 'node20' using: 'node12'
main: 'dist/index.js' main: 'dist/index.js'
post: 'dist/index.js' post: 'dist/index.js'

17
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

5682
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -2,7 +2,7 @@
"name": "podman-login", "name": "podman-login",
"version": "1.0.0", "version": "1.0.0",
"engines": { "engines": {
"node": "20" "node": "12"
}, },
"description": "GitHub Action to log in against a container image registry", "description": "GitHub Action to log in against a container image registry",
"repository": { "repository": {
@ -21,21 +21,20 @@
"author": "Red Hat", "author": "Red Hat",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@actions/core": "^1.10.1", "@actions/core": "^1.2.6",
"@actions/exec": "^1.1.1", "@actions/exec": "^1.0.4",
"@actions/io": "^1.1.3", "@actions/io": "^1.0.2",
"@aws-sdk/client-ecr": "^3.535.0", "@aws-sdk/client-ecr": "^3.100.0"
"@aws-sdk/util-base64": "^3.310.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.2.11",
"@redhat-actions/tsconfig": "^1.2.0", "@redhat-actions/tsconfig": "^1.1.1",
"@types/node": "^20", "@types/node": "^12",
"@typescript-eslint/eslint-plugin": "^7.2.0", "@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^7.2.0", "@typescript-eslint/parser": "^4.14.1",
"@vercel/ncc": "^0.38.1", "@vercel/ncc": "^0.25.1",
"eslint": "^8.57.0", "eslint": "^7.18.0",
"typescript": "^5.4.2" "typescript": "^4.0.5"
} }
} }

View file

@ -71,12 +71,12 @@ async function run(): Promise<void> {
podmanAuthFilePath = authFilePath; podmanAuthFilePath = authFilePath;
} }
else { else {
// process.getuid might be undefined let authFileDir = path.join("/", "tmp", `podman-run-${process.getuid()}`);
let authFileDir = path.join("/", "tmp", `podman-run-${process.getuid ? process.getuid() : null}`);
if (process.env.XDG_RUNTIME_DIR) { if (process.env.XDG_RUNTIME_DIR) {
authFileDir = process.env.XDG_RUNTIME_DIR; authFileDir = process.env.XDG_RUNTIME_DIR;
} }
podmanAuthFilePath = path.join(authFileDir, "containers", "auth.json"); podmanAuthFilePath = path.join(authFileDir,
"containers", "auth.json");
} }
const REGISTRY_AUTH_ENVVAR = "REGISTRY_AUTH_FILE"; const REGISTRY_AUTH_ENVVAR = "REGISTRY_AUTH_FILE";
core.info(`Exporting ${REGISTRY_AUTH_ENVVAR}=${podmanAuthFilePath}`); core.info(`Exporting ${REGISTRY_AUTH_ENVVAR}=${podmanAuthFilePath}`);

View file

@ -69,6 +69,5 @@ export async function execute(
export async function getDockerConfigJson(): Promise<string> { export async function getDockerConfigJson(): Promise<string> {
const dockerConfigPath = path.join(os.homedir(), ".docker", "config.json"); const dockerConfigPath = path.join(os.homedir(), ".docker", "config.json");
return fs.readFile(dockerConfigPath, "utf-8") return fs.readFile(dockerConfigPath, "utf-8");
.catch((err) => { if (err.code === "ENOENT") { return `{"auths":{}}`; } throw err; });
} }