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

feat: bump go 1.22 -> 1.23 #22

Merged
merged 1 commit into from
Aug 17, 2024
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/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
- "1.23"
steps:
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -22,7 +22,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ github.token }}
- name: Build image
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-args: |
GO_VERSION=${{ matrix.go-version }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ name: Weekly Release
# Build a fresh image every week.
on:
schedule:
- cron: "0 14 * * 1" # run at 9am eastern US time every Monday
- cron: 0 14 * * 1 # run at 9am eastern US time every Monday
push:
branches:
- main

env:
LATEST_GO_VERSION: "1.22"
LATEST_GO_VERSION: "1.23"

jobs:
build_and_upload_image:
runs-on: ubuntu-latest
strategy:
matrix:
go-version:
- "1.21"
- "1.22"
- "1.23"
steps:
- name: Set up Docker buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -30,7 +30,7 @@ jobs:
password: ${{ github.token }}
- name: Build and Push Image
if: ${{ matrix.go-version != env.LATEST_GO_VERSION }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-args: |
GO_VERSION=${{ matrix.go-version }}
Expand All @@ -45,7 +45,7 @@ jobs:
cache-to: type=gha,mode=max
- name: Build and Push 'latest' Image
if: ${{ matrix.go-version == env.LATEST_GO_VERSION }}
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
build-args: |
GO_VERSION=${{ matrix.go-version }}
Expand Down
Loading