Skip to content

Commit b22754b

Browse files
committed
feat(workflow): bump docker/login & actions/checkout
1 parent 041e930 commit b22754b

11 files changed

+22
-22
lines changed

.github/actions/build-image/action.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ runs:
2222
using: "composite"
2323
steps:
2424
- name: 📦 Login to GitHub Container Registry
25-
uses: docker/login-action@v2
25+
uses: docker/login-action@v3
2626
with:
2727
registry: ghcr.io
2828
username: ${{ github.actor }}
2929
password: ${{ inputs.gh-token }}
3030

3131
- name: 🐳 Login to docker.01-edu.org Registry
32-
uses: docker/login-action@v2
32+
uses: docker/login-action@v3
3333
with:
3434
registry: docker.01-edu.org
3535
username: ${{ inputs.docker-un }}

.github/workflows/ga-build-content-api-gateway-pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: 🐧 Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: 📦 Login to GitHub Container Registry
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
registry: ghcr.io
2222
username: ${{ github.actor }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424

2525
- name: 🐳 Login to docker.01-edu.org Registry
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
registry: docker.01-edu.org
2929
username: ${{ secrets.USER_DOCKER_01EDU_ORG }}

.github/workflows/ga-build-content-api-gateway.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: 🐧 Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: 🏗️ Build the 🚀 API Gateway image
2121
uses: ./.github/actions/build-image

.github/workflows/ga-build-content-billing-app-pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: 🐧 Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: 📦 Login to GitHub Container Registry
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
registry: ghcr.io
2222
username: ${{ github.actor }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424

2525
- name: 🐳 Login to docker.01-edu.org Registry
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
registry: docker.01-edu.org
2929
username: ${{ secrets.USER_DOCKER_01EDU_ORG }}

.github/workflows/ga-build-content-billing-app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: 🐧 Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: 🏗️ Build the 💰 Billing App image
2121
uses: ./.github/actions/build-image

.github/workflows/ga-build-content-inventory-app-pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: 🐧 Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: 📦 Login to GitHub Container Registry
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
registry: ghcr.io
2222
username: ${{ github.actor }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424

2525
- name: 🐳 Login to docker.01-edu.org Registry
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
registry: docker.01-edu.org
2929
username: ${{ secrets.USER_DOCKER_01EDU_ORG }}

.github/workflows/ga-build-content-inventory-app.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: 🐧 Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: 🏗️ Build the 🧩 Inventory App image
2121
uses: ./.github/actions/build-image

.github/workflows/ga-build-content-postgres-db-pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: 🐧 Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: 📦 Login to GitHub Container Registry
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
registry: ghcr.io
2222
username: ${{ github.actor }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424

2525
- name: 🐳 Login to docker.01-edu.org Registry
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
registry: docker.01-edu.org
2929
username: ${{ secrets.USER_DOCKER_01EDU_ORG }}

.github/workflows/ga-build-content-postgres-db.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: 🐧 Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: 🏗️ Build the 💻 Postgres DB image
2121
uses: ./.github/actions/build-image

.github/workflows/ga-build-content-rabbitmq-pr.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313

1414
steps:
1515
- name: 🐧 Checkout
16-
uses: actions/checkout@v3
16+
uses: actions/checkout@v4
1717

1818
- name: 📦 Login to GitHub Container Registry
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
registry: ghcr.io
2222
username: ${{ github.actor }}
2323
password: ${{ secrets.GITHUB_TOKEN }}
2424

2525
- name: 🐳 Login to docker.01-edu.org Registry
26-
uses: docker/login-action@v2
26+
uses: docker/login-action@v3
2727
with:
2828
registry: docker.01-edu.org
2929
username: ${{ secrets.USER_DOCKER_01EDU_ORG }}

.github/workflows/ga-build-content-rabbitmq.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
steps:
1717
- name: 🐧 Checkout
18-
uses: actions/checkout@v3
18+
uses: actions/checkout@v4
1919

2020
- name: 🏗️ Build the 🐰 Rabbitmq image
2121
uses: ./.github/actions/build-image

0 commit comments

Comments
 (0)