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 @@ -24,7 +24,7 @@ jobs:
runs-on: 'ubuntu-latest'
steps:
- name: Check Out Source Code
uses: actions/checkout@v5
uses: actions/checkout@v6
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@v5
uses: actions/checkout@v6

- uses: go-semantic-release/action@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deep-purple-checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:

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

- name: Verify Jenkins credentials
continue-on-error: false
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/frontend-deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ jobs:

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

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
run: echo "name=build-${{ github.run_id }}" >> $GITHUB_OUTPUT

- name: Upload build artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: build-${{ github.run_id }}
path: ${{ inputs.build-output-dir }}
Expand Down Expand Up @@ -219,7 +219,7 @@ jobs:

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

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/frontend-library-pr-release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

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

Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:

- name: SonarCloud Scan
if: inputs.run-sonarcloud
uses: SonarSource/sonarqube-scan-action@v6
uses: SonarSource/sonarqube-scan-action@v7
with:
args: >
-Dsonar.projectKey=${{ inputs.sonar-project-key != '' && inputs.sonar-project-key || format('{0}_{1}', github.repository_owner, github.event.repository.name) }}
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/frontend-pr-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:

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

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:

- name: Upload build artifacts
if: ${{ !env.ACT }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: build-${{ github.run_id }}
path: ${{ inputs.build-output-dir }}
Expand All @@ -250,7 +250,7 @@ jobs:

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

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down Expand Up @@ -278,7 +278,7 @@ jobs:

- name: Upload coverage
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: coverage-${{ github.run_id }}
path: coverage/
Expand All @@ -294,7 +294,7 @@ jobs:

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

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
Expand Down Expand Up @@ -332,7 +332,7 @@ jobs:

- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: integration-test-results-${{ github.run_id }}
path: playwright-report/
Expand All @@ -351,7 +351,7 @@ jobs:

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

- name: Setup Node with Cache
uses: Typeform/.github/shared-actions/setup-node-with-cache@v1
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 @@ -52,10 +52,10 @@ jobs:

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

- name: Check out repository containing linter config
uses: actions/checkout@v5
uses: actions/checkout@v6
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 @@ -25,7 +25,7 @@ jobs:

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

- 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 @@ -59,7 +59,7 @@ jobs:
runs-on: [ self-hosted, "${{ inputs.runner }}" ]
steps:
- name: Checkout
uses: actions/checkout@v5
uses: actions/checkout@v6
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker context for Buildx
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@v5
- uses: actions/checkout@v6
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@v5
uses: actions/checkout@v6
- name: Update major version tag
run: |
git config --global user.email "[email protected]"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/sonarcloud-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:

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

Expand All @@ -67,14 +67,14 @@ jobs:

- name: Download coverage artifacts
if: inputs.coverage-artifact-name != ''
uses: actions/download-artifact@v4
uses: actions/download-artifact@v7
with:
name: ${{ inputs.coverage-artifact-name }}
path: coverage/
continue-on-error: true

- name: SonarCloud Scan
uses: SonarSource/sonarqube-scan-action@v6
uses: SonarSource/sonarqube-scan-action@v7
with:
args: >
-Dsonar.projectVersion=${{ github.run_id }}
Expand Down