Skip to content

Commit

Permalink
chore(ci): upgrade github actions dependencies (#2221)
Browse files Browse the repository at this point in the history
  • Loading branch information
gartnera authored May 20, 2024
1 parent 47c8205 commit ca15dc2
Show file tree
Hide file tree
Showing 12 changed files with 37 additions and 37 deletions.
4 changes: 2 additions & 2 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
if: ${{ inputs.skip_go == 'false' }}
with:
go-version: '1.20'
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/set-branch-name/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set branch name
id: set-branch-name
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/upgrade-testing/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ inputs:
runs:
using: "composite"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- uses: actions/setup-python@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
concurrency:
group: "build-and-test"
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set CPU Architecture
shell: bash
Expand All @@ -54,7 +54,7 @@ jobs:
skip_docker_compose: "false"

- name: Test
uses: nick-fields/retry@v2
uses: nick-fields/retry@v3
with:
timeout_minutes: 20
max_attempts: 2
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
runs-on: ubuntu-22.04
timeout-minutes: 25
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set CPU Architecture
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/change-log-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docker-build-and-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -57,7 +57,7 @@ jobs:
runs-on: buildjet-4vcpu-ubuntu-2204-arm
timeout-minutes: 30
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/execute_advanced_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
timeout-minutes: 120
steps:
- name: "Checkout Code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start Test
run: make start-e2e-admin-test
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
timeout-minutes: 120
steps:
- name: "Checkout Code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start Test
run: make start-upgrade-test
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
timeout-minutes: 120
steps:
- name: "Checkout Code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start Test
run: make start-upgrade-test-light
Expand All @@ -123,7 +123,7 @@ jobs:
timeout-minutes: 120
steps:
- name: "Checkout Code"
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Start Test
run: make start-e2e-performance-test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-files.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4

- uses: bufbuild/buf-setup-action@v1

Expand Down
26 changes: 13 additions & 13 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ jobs:
steps:
- name: Checkout Source
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.20'

Expand All @@ -71,13 +71,13 @@ jobs:
steps:
- name: Checkout Source
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.20'

Expand All @@ -101,13 +101,13 @@ jobs:
steps:
- name: Checkout Source
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.20'

Expand All @@ -133,7 +133,7 @@ jobs:

- name: Checkout code
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down Expand Up @@ -174,7 +174,7 @@ jobs:
timeout-minutes: 10
steps:

- uses: actions/checkout@v3
- uses: actions/checkout@v4
if: ${{ github.event.inputs.skip_checks != 'true' }}
with:
fetch-depth: 0
Expand Down Expand Up @@ -209,7 +209,7 @@ jobs:
steps:
- name: "Checkout Code"
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set CPU Architecture
if: ${{ github.event.inputs.skip_checks != 'true' }}
Expand Down Expand Up @@ -284,7 +284,7 @@ jobs:
steps:
- name: "Checkout Code"
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Set CPU Architecture
if: ${{ github.event.inputs.skip_checks != 'true' }}
Expand Down Expand Up @@ -362,7 +362,7 @@ jobs:
steps:
- name: "Checkout Code"
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Execute e2e-admin-tests
if: ${{ github.event.inputs.skip_checks != 'true' }}
Expand All @@ -384,7 +384,7 @@ jobs:
steps:
- name: "Checkout Code"
if: ${{ github.event.inputs.skip_checks != 'true' }}
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Execute upgrade-test
if: ${{ github.event.inputs.skip_checks != 'true' }}
Expand Down Expand Up @@ -415,7 +415,7 @@ jobs:
timeout-minutes: 60
environment: release
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Install Pipeline Dependencies
uses: ./.github/actions/install-dependencies
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rc-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0

Expand All @@ -39,7 +39,7 @@ jobs:
needs:
- pre-release-checks
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Set CPU Architecture
shell: bash
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/sast-linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.20'

Expand All @@ -40,12 +40,12 @@ jobs:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.20'

Expand All @@ -59,12 +59,12 @@ jobs:
GO111MODULE: on
steps:
- name: Checkout Source
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Set up Go
uses: actions/setup-go@v3
uses: actions/setup-go@v5
with:
go-version: '1.20'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/upgrade_path_testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ jobs:
with:
version: 2

- uses: actions/setup-go@v4
- uses: actions/setup-go@v5
with:
check-latest: false
go-version: '^1.20'
Expand Down

0 comments on commit ca15dc2

Please sign in to comment.