Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update aws-otel-lambda workflows #290

Merged
merged 1 commit into from
Sep 7, 2022
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.18'
go-version: '^1.19.1'
- uses: actions/setup-java@v2
if: ${{ matrix.language == 'java' }}
with:
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/main-build-python38.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Python38 Layer Integration Test
# This workflow is for verifying python3.9 layer in Lambda python3.8 environment
on:
push:
branches: [ main ]
branches:
- main
- release/*
workflow_dispatch:

jobs:
Expand All @@ -17,9 +19,9 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.18'
go-version: '^1.19.1'
- uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
Expand Down
8 changes: 5 additions & 3 deletions .github/workflows/main-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ name: Main Build

on:
push:
branches: [ main ]
branches:
- main
- release/*
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -37,9 +39,9 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.18'
go-version: '^1.19.1'
- uses: actions/setup-java@v2
if: ${{ matrix.language == 'java' }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.18'
go-version: '^1.19.1'
- uses: actions/setup-java@v2
if: ${{ matrix.language == 'java' }}
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -302,13 +302,13 @@ jobs:
# with:
# dotnet-version: '3.1.x'
- name: Use Go Language
uses: actions/setup-go@v2
uses: actions/setup-go@v3
# NOTE: (enowell) In case the languages below need to build the
# collector, and because building the collector requires go 1.18 and
# above, always setup go 1.18.
# if: ${{ env.TEST_LANGUAGE == 'go' }}
with:
go-version: '^1.18'
go-version: '^1.19.1'
- name: download layer tf file
uses: actions/download-artifact@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/soaking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ jobs:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-go@v2
- uses: actions/setup-go@v3
with:
go-version: '^1.18'
go-version: '^1.19.1'
- uses: actions/setup-java@v2
if: ${{ matrix.language == 'java' }}
with:
Expand Down