Skip to content

Commit 8db7481

Browse files
author
Steve Hobbs
authored
Merge pull request #63 from auth0-samples/frederikprijck-patch-1
Update Ubuntu version on Circle CI
2 parents 5e66a11 + 8760cdf commit 8db7481

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

.circleci/config.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,15 @@ defaults: &defaults
4040
path: /tmp/out
4141

4242
# Jobs and Workflows
43-
version: 2
43+
version: 2.1
44+
parameters:
45+
machine_image:
46+
type: string
47+
default: ubuntu-2004:202201-02
4448
jobs:
4549
checkout:
46-
machine: true
50+
machine:
51+
image: << pipeline.parameters.machine_image >>
4752
steps:
4853
- checkout
4954
- run: git clone https://github.com/auth0-samples/spa-quickstarts-tests scripts
@@ -52,8 +57,9 @@ jobs:
5257
paths:
5358
- project
5459
- scripts
55-
01-login:
56-
machine: true
60+
login:
61+
machine:
62+
image: << pipeline.parameters.machine_image >>
5763
environment:
5864
- AUTH0_CFG: 01-Login/.env
5965
- SAMPLE_PATH: 01-Login
@@ -65,7 +71,7 @@ workflows:
6571
jobs:
6672
- checkout:
6773
context: Quickstart Web App Test
68-
- 01-login:
74+
- login:
6975
context: Quickstart Web App Test
7076
requires:
7177
- checkout

0 commit comments

Comments
 (0)