diff --git a/.github/workflows/on_prerelease.yml b/.github/workflows/on_prerelease.yml index a436fd34..855b0e8c 100644 --- a/.github/workflows/on_prerelease.yml +++ b/.github/workflows/on_prerelease.yml @@ -20,7 +20,7 @@ env: jobs: test-nix: name: Run unit tests on *Nix - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Login to DockerHub @@ -54,7 +54,7 @@ jobs: prerelease: name: Build binary for *Nix/Win, create archives for *Nix/Win, create packages for *Nix, upload all artifacts into GH Release assets - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [test-nix, test-windows, test-integration-nix] steps: - uses: actions/checkout@v3 @@ -132,7 +132,7 @@ jobs: # can't run this step inside of container because of tests specific test-integration-nix: name: Run integration tests on *Nix - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 defaults: run: working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}} @@ -151,7 +151,7 @@ jobs: publish-to-s3: name: Send release assets to S3 - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 needs: [package-win] steps: - name: Login to DockerHub @@ -194,7 +194,7 @@ jobs: consumer-producer-image: name: Build and push consumer-producer image to use in our canaries - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 with: diff --git a/.github/workflows/on_release.yml b/.github/workflows/on_release.yml index 56f35f4b..ea08e932 100644 --- a/.github/workflows/on_release.yml +++ b/.github/workflows/on_release.yml @@ -17,7 +17,7 @@ jobs: publish-to-s3: name: Send release assets to S3 - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - name: Login to DockerHub uses: docker/login-action@v2 diff --git a/.github/workflows/push_pr.yml b/.github/workflows/push_pr.yml index 70844321..9b9a6a24 100644 --- a/.github/workflows/push_pr.yml +++ b/.github/workflows/push_pr.yml @@ -18,7 +18,7 @@ env: jobs: static-analysis: name: Run all static analysis checks - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - uses: actions/setup-go@v4 @@ -41,7 +41,7 @@ jobs: test-nix: name: Run unit tests on *Nix - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Login to DockerHub @@ -77,7 +77,7 @@ jobs: # can't run this step inside of container because of tests specific test-integration-nix: name: Run integration tests on *Nix - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 defaults: run: working-directory: src/github.com/${{env.ORIGINAL_REPO_NAME}} @@ -98,7 +98,7 @@ jobs: test-build: name: Test binary compilation for all platforms:arch - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Login to DockerHub