Skip to content

Commit 2b914e0

Browse files
authored
Merge pull request #391 from PagerDuty/release/0.11.1-beta.0
2 parents 5b04ea8 + 753b800 commit 2b914e0

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1448
-1037
lines changed

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646

4747
# Initializes the CodeQL tools for scanning.
4848
- name: Initialize CodeQL
49-
uses: github/codeql-action/init@v2
49+
uses: github/codeql-action/init@v3
5050
with:
5151
languages: ${{ matrix.language }}
5252
# If you wish to specify custom queries, you can do so here or in a config file.
@@ -60,7 +60,7 @@ jobs:
6060
# Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift).
6161
# If this step fails, then you should remove it and run the build manually (see below)
6262
- name: Autobuild
63-
uses: github/codeql-action/autobuild@v2
63+
uses: github/codeql-action/autobuild@v3
6464

6565
# ℹ️ Command-line programs to run using the OS shell.
6666
# 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun
@@ -73,6 +73,6 @@ jobs:
7373
# ./location_of_script_within_repo/buildscript.sh
7474

7575
- name: Perform CodeQL Analysis
76-
uses: github/codeql-action/analyze@v2
76+
uses: github/codeql-action/analyze@v3
7777
with:
7878
category: "/language:${{matrix.language}}"

.github/workflows/snyk-security.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ jobs:
6060

6161
# Push the Snyk Code results into GitHub Code Scanning tab
6262
- name: Upload result to GitHub Code Scanning
63-
uses: github/codeql-action/upload-sarif@v2
63+
uses: github/codeql-action/upload-sarif@v3
6464
with:
6565
sarif_file: snyk-code.sarif

cypress.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,6 @@ module.exports = defineConfig({
2222
},
2323
baseUrl: 'http://localhost:3000/pd-live-react',
2424
specPattern: 'cypress/e2e/**/*.spec.{js,ts,jsx,tsx}',
25-
// Cypress 12 introduces Test Isolation by default which breaks our current tests
26-
// https://docs.cypress.io/guides/references/migration-guide#Test-Isolation
27-
testIsolation: false,
25+
testIsolation: true,
2826
},
2927
});

0 commit comments

Comments
 (0)