diff --git a/.github/workflows/backport.yaml b/.github/workflows/backport.yaml index 1c3d16f6f..d24adf785 100644 --- a/.github/workflows/backport.yaml +++ b/.github/workflows/backport.yaml @@ -9,7 +9,7 @@ on: jobs: backport: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest name: Backport steps: - name: Generate token diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index 736aeea4a..adc3fa2b9 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -17,7 +17,7 @@ jobs: matrix: go-version: [1.23.x] node-version: [16.x] - platform: [ubuntu-22.04] + platform: [ubuntu-latest] runs-on: ${{ matrix.platform }} steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 diff --git a/.github/workflows/codeql.yaml b/.github/workflows/codeql.yaml index d7656231b..27376fd6e 100644 --- a/.github/workflows/codeql.yaml +++ b/.github/workflows/codeql.yaml @@ -14,7 +14,7 @@ jobs: # - https://gh.io/supported-runners-and-hardware-resources # - https://gh.io/using-larger-runners (GitHub.com only) # Consider using larger runners or machines with greater resources for possible analysis time improvements. - runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-22.04' }} + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} permissions: # required for all workflows security-events: write diff --git a/.github/workflows/docker-main.yaml b/.github/workflows/docker-main.yaml index cf9f920a4..20ee6ffb4 100644 --- a/.github/workflows/docker-main.yaml +++ b/.github/workflows/docker-main.yaml @@ -8,7 +8,7 @@ on: jobs: publish: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest outputs: sha-tag: ${{ steps.metadata.outputs.sha-tag }} image: ${{ steps.metadata.outputs.image }} @@ -71,7 +71,7 @@ jobs: org.opencontainers.image.revision=${{ github.sha }} deploy: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: publish steps: - name: Checkout Gitops Repo diff --git a/.github/workflows/docker-version-branches.yaml b/.github/workflows/docker-version-branches.yaml index aaf891aae..98611d0e2 100644 --- a/.github/workflows/docker-version-branches.yaml +++ b/.github/workflows/docker-version-branches.yaml @@ -8,7 +8,7 @@ on: jobs: publish: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index d529a43fb..92dde459f 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -9,7 +9,7 @@ on: jobs: lint: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 diff --git a/.github/workflows/needs-data.yaml b/.github/workflows/needs-data.yaml index d8a3d0d1b..ed7f4ef6d 100644 --- a/.github/workflows/needs-data.yaml +++ b/.github/workflows/needs-data.yaml @@ -11,7 +11,7 @@ jobs: permissions: issues: write # for actions/stale to close stale issues pull-requests: write # for actions/stale to close stale PRs - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 with: diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 99a877dde..d9cc66d6e 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -13,7 +13,7 @@ jobs: contents: write issues: read pull-requests: read - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest env: DOCKER_CLI_EXPERIMENTAL: "enabled" outputs: @@ -117,7 +117,7 @@ jobs: docker manifest push pomerium/pomerium:debug-nonroot deploy: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest needs: goreleaser steps: - name: Checkout Gitops Repo diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7cc5e4c16..262cb73f6 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -14,7 +14,7 @@ jobs: matrix: go-version: [1.23.x] node-version: [16.x] - platform: [ubuntu-22.04] + platform: [ubuntu-latest] deployment: [multi, single] authenticate-flow: [stateful, stateless] runs-on: ${{ matrix.platform }} @@ -86,7 +86,7 @@ jobs: run: make cover - uses: jandelgado/gcov2lcov-action@4e1989767862652e6ca8d3e2e61aabe6d43be28b - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-latest' name: convert coverage to lcov with: infile: coverage.txt @@ -94,13 +94,13 @@ jobs: - name: upload to coveralls uses: coverallsapp/github-action@648a8eb78e6d50909eff900e4ec85cab4524a45b - if: matrix.platform == 'ubuntu-22.04' + if: matrix.platform == 'ubuntu-latest' with: github-token: ${{ secrets.GITHUB_TOKEN }} path-to-lcov: coverage.lcov build-docker: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 @@ -117,7 +117,7 @@ jobs: cache-to: type=gha,mode=max precommit: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest if: github.event_name == 'pull_request' steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 @@ -142,7 +142,7 @@ jobs: SKIP: lint check-docker-images: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest if: github.event_name == 'pull_request' steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683