Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: manusa/actions-setup-openshift
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.1.0
Choose a base ref
...
head repository: manusa/actions-setup-openshift
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 20 commits
  • 771 files changed
  • 2 contributors

Commits on Oct 9, 2020

  1. Copy the full SHA
    d648a6c View commit details
  2. [RELEASE] Release v1.1.1

    manusa committed Oct 9, 2020
    Copy the full SHA
    0a71888 View commit details
  3. [RELEASE] Release v1.1.2

    manusa committed Oct 9, 2020
    Copy the full SHA
    a713247 View commit details

Commits on Mar 2, 2021

  1. ci: Add job for defaults

    manusa committed Mar 2, 2021
    Copy the full SHA
    385af71 View commit details

Commits on May 14, 2021

  1. deps: Bump npm dependencies

    manusa committed May 14, 2021
    Copy the full SHA
    cb4c386 View commit details
  2. Copy the full SHA
    3f2454d View commit details

Commits on May 17, 2021

  1. [RELEASE] Release v1.1.3

    manusa committed May 17, 2021
    Copy the full SHA
    304c188 View commit details

Commits on Oct 29, 2022

  1. deps: bump all dependencies

    manusa committed Oct 29, 2022
    Copy the full SHA
    4a70e57 View commit details
  2. Copy the full SHA
    9f15236 View commit details
  3. [RELEASE] Release v1.1.4

    manusa committed Oct 29, 2022
    Copy the full SHA
    4fbc3dc View commit details

Commits on Mar 28, 2023

  1. ci: ubuntu 18.04 no longer provided by GitHub

    The Ubuntu-18.04 environment is deprecated and will be removed on April 1st, 2023. For more details, see actions/runner-images#6002
    manusa committed Mar 28, 2023
    Copy the full SHA
    f8f0ea4 View commit details
  2. deps: bump all dependencies

    manusa committed Mar 28, 2023
    Copy the full SHA
    e7498a2 View commit details
  3. [RELEASE] Release v1.1.5

    manusa committed Mar 28, 2023
    Copy the full SHA
    e59fe3c View commit details
  4. Copy the full SHA
    86d19ff View commit details

Commits on Oct 23, 2023

  1. Copy the full SHA
    70340ff View commit details
  2. Copy the full SHA
    25d3865 View commit details
  3. Copy the full SHA
    994665d View commit details
  4. deps: bump jest to v29.7.0

    manusa committed Oct 23, 2023
    Copy the full SHA
    9a60caa View commit details
  5. deps: bump axios to v1.5.1

    manusa committed Oct 23, 2023
    Copy the full SHA
    e1282e3 View commit details
  6. Copy the full SHA
    f510517 View commit details
Showing 771 changed files with 214,227 additions and 78,906 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -4,11 +4,11 @@ on: [push]

jobs:
main:
name: Runner
name: Check format and Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@master
- name: NPM install
32 changes: 26 additions & 6 deletions .github/workflows/runner.yml
Original file line number Diff line number Diff line change
@@ -8,15 +8,35 @@ on:

jobs:
run:
name: Run with dnsIp
runs-on: ubuntu-latest
name: Run (defaults)
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
openshift: [v3.11.0,v3.9.0]
openshift: [v3.11.0]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@master
- name: Test Action
uses: ./
with:
oc version: ${{ matrix.openshift }}
github token: ${{ secrets.GITHUB_TOKEN }}
- name: Validate run
run: |
oc version | grep 'Server https://'
run-dns-ip:
name: Run with dns-Ip
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
openshift: [v3.11.0]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@master
- name: Test Action
@@ -35,14 +55,14 @@ jobs:
oc exec ubi -- curl google.com
run-with-components:
name: Run with Components + dnsIp
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
openshift: [v3.11.0]
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@master
- name: Test Action
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -21,12 +21,12 @@ on: [push]
jobs:
example:
name: Example OpenShift Cluster interaction
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Setup OpenShift
uses: manusa/actions-setup-openshift@v1.1.0
uses: manusa/actions-setup-openshift@v1.1.5
with:
oc version: 'v3.11.0'
github token: ${{ secrets.GITHUB_TOKEN }}
@@ -36,16 +36,16 @@ jobs:
### Required input parameters
| Parameter | Description |
| --------- | ----------- |
| Parameter | Description |
|--------------|-----------------------------------------------------------------------------|
| `oc version` | OpenShift [version](https://github.com/openshift/origin/releases) to deploy |

### Optional input parameters

| Parameter | Description |
| --------- | ----------- |
| `dns ip` | External DNS server IP to use in node-config.yaml |
| `enable` | A list of components to enable (comma separated) |
| Parameter | Description |
|----------------|------------------------------------------------------------------------------------------|
| `dns ip` | External DNS server IP to use in node-config.yaml |
| `enable` | A list of components to enable (comma separated) |
| `github token` | GITHUB_TOKEN secret value to access GitHub REST API with an unlimited number of requests |
## License

2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
@@ -15,5 +15,5 @@ inputs:
github token:
description: 'GITHUB_TOKEN to be able to perform requests to GH REST API (with no limit)'
runs:
using: 'node12'
using: 'node16'
main: 'src/index.js'
1 change: 1 addition & 0 deletions node_modules/.bin/semver

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions node_modules/.bin/uuid

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading