Skip to content

Commit 1d3db39

Browse files
committed
Merge branch 'main' into chore-cancel-workflow
2 parents 1fec8df + 5903bff commit 1d3db39

13 files changed

+15
-15
lines changed

.github/workflows/00-init-playground.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: 🔄 Init Cache Playground
1515
uses: ./.github/actions/npm-cache

.github/workflows/00-init.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: 🔄 Init Cache Default
1515
uses: ./.github/actions/npm-cache

.github/workflows/01-build-playground.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: 🔄 Init Cache Playground
1515
uses: ./.github/actions/npm-cache

.github/workflows/01-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache

.github/workflows/01-cypress.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
timeout-minutes: 10
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache
@@ -33,7 +33,7 @@ jobs:
3333
config: pageLoadTimeout=100000,baseUrl=http://localhost:8080
3434

3535
- name: 🛗 Upload Artifacts
36-
uses: actions/upload-artifact@v2
36+
uses: actions/upload-artifact@v3
3737
# after the test run completes
3838
# store videos and any screenshots
3939
# NOTE: screenshots will be generated only if an E2E test failed
@@ -42,7 +42,7 @@ jobs:
4242
with:
4343
name: cypress-screenshots
4444
path: e2e/cypress/screenshots
45-
- uses: actions/upload-artifact@v2
45+
- uses: actions/upload-artifact@v3
4646
# Test run video was always captured, so this action uses "always()" condition
4747
if: always()
4848
with:

.github/workflows/01-npm-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache

.github/workflows/02-deploy-gh-pages.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
group: ${{ github.workflow }}-${{ github.ref }}
1212
steps:
1313
- name: ⬇️ Checkout repo
14-
uses: actions/checkout@v3
14+
uses: actions/checkout@v4
1515

1616
- name: 🔄 Init Cache
1717
uses: ./.github/actions/npm-cache

.github/workflows/02-npm-publish.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: ⬇️ Checkout repo
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313

1414
- name: 🔄 Init Cache
1515
uses: ./.github/actions/npm-cache

.github/workflows/cleanup.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ubuntu-latest
1313
steps:
1414
- name: ⬇️ Checkout repo
15-
uses: actions/checkout@v3
15+
uses: actions/checkout@v4
1616

1717
- name: 🔄 Init Cache
1818
uses: ./.github/actions/npm-cache

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
steps:
2626
- name: Checkout repository
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828

2929
- name: Initialize CodeQL
3030
uses: github/codeql-action/init@v2

.github/workflows/dependency-review.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- name: 'Checkout Repository'
12-
uses: actions/checkout@v3
12+
uses: actions/checkout@v4
1313
- name: 'Dependency Review'
1414
uses: actions/dependency-review-action@v3

.github/workflows/update-release-candidate-branch.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout repository
13-
uses: actions/checkout@v3
13+
uses: actions/checkout@v4
1414
with:
1515
fetch-depth: 0
1616

packages/ci-cd-abcd/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"scripts": {
1010
"tsc": "tsc -p . ",
1111
"build": "npm run tsc",
12-
"publish:dryrun": "npm publish --dry-run"
12+
"publish:dryrun": "npm publish --dry-run --provenance --access public"
1313
},
1414
"repository": {
1515
"type": "git",

0 commit comments

Comments
 (0)