Bump golang.org/x/net from 0.23.0 to 0.33.0 #54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- master | |
tags: | |
- "v?[0-9]+.[0-9]+.[0-9]+*" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
Checks: | |
runs-on: UbuntuLatest32Cores128G | |
permissions: | |
id-token: "write" | |
contents: "read" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@main | |
with: | |
flakehub: true | |
- uses: DeterminateSystems/magic-nix-cache-action@main | |
- uses: DeterminateSystems/flake-checker-action@main | |
if: ${{ always() }} | |
- name: Go Formatting | |
if: ${{ always() }} | |
run: nix develop -c go fmt | |
- name: Check diff | |
if: ${{ always() }} | |
run: git diff --exit-code | |
- name: Go Vet | |
if: ${{ always() }} | |
run: nix develop -c go vet | |
- name: Check Spelling | |
if: ${{ always() }} | |
run: nix develop --command codespell --ignore-words-list crate,pullrequest,pullrequests --skip target . | |
- name: Check nixpkgs-fmt formatting | |
if: ${{ always() }} | |
run: git ls-files '*.nix' | nix develop --command xargs nixpkgs-fmt --check | |
- name: Check EditorConfig conformance | |
if: ${{ always() }} | |
run: nix develop --command eclint | |
DeterminateCI: | |
uses: DeterminateSystems/ci/.github/workflows/workflow.yml@main | |
needs: Checks | |
permissions: | |
id-token: "write" | |
contents: "read" | |
with: | |
visibility: public | |
runner-map: | | |
{ | |
"aarch64-darwin": "macos-latest-xlarge", | |
"aarch64-linux": "UbuntuLatest32Cores128GArm", | |
"i686-linux": "UbuntuLatest32Cores128G", | |
"x86_64-darwin": "macos-latest-xlarge", | |
"x86_64-linux": "UbuntuLatest32Cores128G" | |
} |