Skip to content

Commit

Permalink
Merge branch 'main' into improveErrorMessageWithImageAsBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
kichristensen authored Nov 16, 2024
2 parents 203e3f5 + 45c17c1 commit c993a37
Show file tree
Hide file tree
Showing 17 changed files with 481 additions and 444 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_pipelinesrelease_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
inputs:
goVersion:
required: false
default: 1.21.3
default: 1.23.3
type: string
registry:
required: false
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-docs-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name: Check Website Links
on: pull_request

env:
GOVERSION: 1.21.3
GOVERSION: 1.23.3

jobs:
htmltest:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integ-reuseable-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
type: string
default: ghcr.io
env:
GOVERSION: 1.21.3
GOVERSION: 1.23.3
PORTER_INTEG_FILE: ${{inputs.test_name}}.go

jobs:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/porter-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,15 @@ on:
branches:
- main
- release/*

# This configuration ensures that multiple canary releases don't run at the same time:
# - The 'group' combines the workflow name and git reference to create a unique identifier
# - 'cancel-in-progress: false' means if a new release is triggered, it will wait in line
# instead of canceling any running release
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
build_pipelinesrelease_template:
name: build_pipelinesrelease_template
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/porter-integration-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- main

env:
GOVERSION: 1.21.3
GOVERSION: 1.23.3

jobs:
archive_integration_test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/porter-integration-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
default: ghcr.io

env:
GOVERSION: 1.21.3
GOVERSION: 1.23.3

jobs:
archive_integration_test:
Expand Down
8 changes: 8 additions & 0 deletions .github/workflows/porter-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ on:
- "!latest*"
- "!canary*"

# This configuration ensures that multiple releases don't run at the same time:
# - The 'group' combines the workflow name and git reference to create a unique identifier
# - 'cancel-in-progress: false' means if a new release is triggered, it will wait in line
# instead of canceling any running release
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: false

jobs:
build_pipelinesrelease_template:
name: build_pipelinesrelease_template
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/porter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
paths-ignore:
- 'docs/**'
env:
GOVERSION: 1.21.3
GOVERSION: 1.23.3

jobs:
Build:
Expand Down
Loading

0 comments on commit c993a37

Please sign in to comment.