Skip to content

Commit cc9e469

Browse files
author
Jacob Woffenden
authored
🚑 Update workflow with GHCR login (#9)
Signed-off-by: Jacob Woffenden <jacob.woffenden@digital.justice.gov.uk>
1 parent e00a38c commit cc9e469

File tree

10 files changed

+48
-8
lines changed

10 files changed

+48
-8
lines changed

‎.github/workflows/features.yml

+8
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,14 @@ jobs:
213213
id: checkout
214214
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
215215

216+
- name: Log in to GitHub Container Registry
217+
id: login_ghcr
218+
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
219+
with:
220+
registry: ghcr.io
221+
username: ${{ github.actor }}
222+
password: ${{ secrets.GITHUB_TOKEN }}
223+
216224
- name: Install @devcontainers/cli
217225
id: install_devcontainers_cli
218226
run: npm install --global @devcontainers/cli@latest

‎.github/workflows/images.yml

+8
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,14 @@ jobs:
209209
id: setup_docker_buildx
210210
uses: docker/setup-buildx-action@f95db51fddba0c2d1ec667646a06c2ce06100226 # v3.0.0
211211

212+
- name: Log in to GitHub Container Registry
213+
id: login_ghcr
214+
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0
215+
with:
216+
registry: ghcr.io
217+
username: ${{ github.actor }}
218+
password: ${{ secrets.GITHUB_TOKEN }}
219+
212220
- name: Prepare Environment
213221
id: prepare_environment
214222
run: |

‎features/src/aws/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11-
## [0.0.1] - 2024-25-01
11+
## [0.0.2] - 2024-01-31
12+
13+
### Changed
14+
15+
- Updated workflows
16+
17+
## [0.0.1] - 2024-01-25
1218

1319
### Added
1420

‎features/src/aws/devcontainer-feature.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "aws",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"name": "AWS",
55
"description": "Installs the AWS CLI and AWS SSO CLI",
66
"options": {

‎features/src/kubernetes/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11-
## [0.0.1] - 2024-25-01
11+
## [0.0.2] - 2024-01-31
12+
13+
### Changed
14+
15+
- Updated workflows
16+
17+
## [0.0.1] - 2024-01-25
1218

1319
### Added
1420

‎features/src/kubernetes/devcontainer-feature.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "kubernetes",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"name": "Kubernetes",
55
"description": "Installs the Kubernetes CLI",
66
"options": {

‎features/src/terraform/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11-
## [0.0.1] - 2024-25-01
11+
## [0.0.2] - 2024-01-31
12+
13+
### Changed
14+
15+
- Updated workflows
16+
17+
## [0.0.1] - 2024-01-25
1218

1319
### Added
1420

‎features/src/terraform/devcontainer-feature.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "terraform",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"name": "Terraform",
55
"description": "Installs the Terraform CLI",
66
"options": {

‎images/base/CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88

99
## [Unreleased]
1010

11-
## [0.0.1] - 2024-25-01
11+
## [0.0.2] - 2024-01-31
12+
13+
### Changed
14+
15+
- Updated workflows
16+
17+
## [0.0.1] - 2024-01-25
1218

1319
### Added
1420

‎images/base/config.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
22
"name": "base",
3-
"version": "0.0.1"
3+
"version": "0.0.2"
44
}

0 commit comments

Comments
 (0)