mirror of
https://github.com/docker/login-action.git
synced 2024-11-09 15:23:25 +01:00
Merge pull request #31 from crazy-max/master
Use major version of actions
This commit is contained in:
commit
12fd63324c
3 changed files with 12 additions and 12 deletions
16
.github/workflows/ci.yml
vendored
16
.github/workflows/ci.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to DockerHub
|
name: Login to DockerHub
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -41,7 +41,7 @@ jobs:
|
||||||
# steps:
|
# steps:
|
||||||
# -
|
# -
|
||||||
# name: Checkout
|
# name: Checkout
|
||||||
# uses: actions/checkout@v2.3.1
|
# uses: actions/checkout@v2
|
||||||
# -
|
# -
|
||||||
# name: Login to ECR
|
# name: Login to ECR
|
||||||
# uses: ./
|
# uses: ./
|
||||||
|
@ -62,7 +62,7 @@ jobs:
|
||||||
# steps:
|
# steps:
|
||||||
# -
|
# -
|
||||||
# name: Checkout
|
# name: Checkout
|
||||||
# uses: actions/checkout@v2.3.1
|
# uses: actions/checkout@v2
|
||||||
# -
|
# -
|
||||||
# name: Configure AWS Credentials
|
# name: Configure AWS Credentials
|
||||||
# uses: aws-actions/configure-aws-credentials@v1
|
# uses: aws-actions/configure-aws-credentials@v1
|
||||||
|
@ -81,7 +81,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to GitHub Package Registry
|
name: Login to GitHub Package Registry
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -95,7 +95,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to GitHub Package Registry
|
name: Login to GitHub Package Registry
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -109,7 +109,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Login to GitLab
|
name: Login to GitLab
|
||||||
uses: ./
|
uses: ./
|
||||||
|
@ -123,7 +123,7 @@ jobs:
|
||||||
# steps:
|
# steps:
|
||||||
# -
|
# -
|
||||||
# name: Checkout
|
# name: Checkout
|
||||||
# uses: actions/checkout@v2.3.2
|
# uses: actions/checkout@v2
|
||||||
# -
|
# -
|
||||||
# name: Login to Google Artifact Registry
|
# name: Login to Google Artifact Registry
|
||||||
# uses: ./
|
# uses: ./
|
||||||
|
@ -137,7 +137,7 @@ jobs:
|
||||||
# steps:
|
# steps:
|
||||||
# -
|
# -
|
||||||
# name: Checkout
|
# name: Checkout
|
||||||
# uses: actions/checkout@v2.3.2
|
# uses: actions/checkout@v2
|
||||||
# -
|
# -
|
||||||
# name: Login to Google Container Registry
|
# name: Login to Google Container Registry
|
||||||
# uses: ./
|
# uses: ./
|
||||||
|
|
4
.github/workflows/labels.yml
vendored
4
.github/workflows/labels.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Run Labeler
|
name: Run Labeler
|
||||||
uses: crazy-max/ghaction-github-labeler@v3.0.0
|
uses: crazy-max/ghaction-github-labeler@v3
|
||||||
|
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2.3.2
|
uses: actions/checkout@v2
|
||||||
-
|
-
|
||||||
name: Install
|
name: Install
|
||||||
run: yarn install
|
run: yarn install
|
||||||
|
@ -33,7 +33,7 @@ jobs:
|
||||||
run: yarn run test
|
run: yarn run test
|
||||||
-
|
-
|
||||||
name: Upload coverage
|
name: Upload coverage
|
||||||
uses: codecov/codecov-action@v1.0.13
|
uses: codecov/codecov-action@v1
|
||||||
if: success()
|
if: success()
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.CODECOV_TOKEN }}
|
token: ${{ secrets.CODECOV_TOKEN }}
|
||||||
|
|
Loading…
Reference in a new issue