Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-standard-checks-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
runs-on: [ "${{ inputs.runner }}" ]
steps:
- name: Check Out Source Code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/create-github-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- uses: go-semantic-release/action@v1
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Required for SonarCloud and semantic-release

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/go-lint-workflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Check out repository containing linter config
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
repository: ${{ inputs.golangci-lint-config-repo }}
ref: ${{ inputs.golangci-lint-config-repo-ref }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/image-multiarch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
runs-on: [ "${{ inputs.runner }}" ]
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Set up QEMU
if: ${{ contains(inputs.platforms, ',') }}
uses: docker/setup-qemu-action@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/plantuml.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest
if: ${{ github.actor != 'dependabot[bot]' }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# Checkout the Pull Request branch, so that we are not in a detached head state.
# and can push the re-generated diagrams to the HEAD of the same branch.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Update major version tag
run: |
git config --global user.email "security@typeform.com"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/sonarcloud-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0 # Required for SonarCloud to analyze git history

Expand Down
2 changes: 1 addition & 1 deletion shared-actions/run-cypress-functional/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ runs:
using: 'composite'
steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/run-cypress-visual/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ runs:
using: 'composite'
steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down
2 changes: 1 addition & 1 deletion shared-actions/run-playwright-visual/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ runs:
using: 'composite'
steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/frontend-canary-cleanup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
echo "Deploy was not successful, deploy workflow exited with status: ${{ github.event.workflow_run.conclusion}}. You may need to revert your PR."

- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
2 changes: 1 addition & 1 deletion workflow-templates/library-checks-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:

steps:
- name: Check out Git repository
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Set up Node.js
uses: actions/setup-node@v6
Expand Down
4 changes: 2 additions & 2 deletions workflow-templates/secrets-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ jobs:

steps:
- name: Check Out Source Code
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# By default, actions/checkout@v6 does a shallow clone with
# By default, actions/checkout@v7 does a shallow clone with
# depth 1. 0 means 'fetch the whole history'. We use it here
# since we don't know how many commits a PR could have. If
# you're repo is very large and cloning is slow, you could
Expand Down