Skip to content
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
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
type: string

env:
GO_VERSION: "1.24"
GO_VERSION: "1.26"

jobs:
# Build ARM64 using native GitHub ARM runner but inside Docker for Alpine compatibility
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ jobs:
name: fern-generated-code
path: generated/

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.26"

- name: Install Dependencies
run: sudo apt-get update && sudo apt-get install -y libpcap-dev

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.builder
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile used for the compilation of the statically compiled methodaws binary
FROM golang:1.24.4-alpine AS base
FROM golang:1.26.0-alpine3.22 AS base
ARG GORELEASER_VERSION="v2.0.1"
ARG CLI_NAME="methodaws"
ARG TARGETARCH
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/Method-Security/methodaws

go 1.24.4
go 1.26.0

require (
github.com/Method-Security/pkg v0.0.6
Expand Down
2 changes: 1 addition & 1 deletion godel/config/godel.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
distributionURL=https://github.com/palantir/godel/releases/download/v2.127.0/godel-2.127.0.tgz
distributionURL=https://github.com/palantir/godel/releases/download/v2.152.0/godel-2.152.0.tgz
Comment thread
payoub125 marked this conversation as resolved.
distributionSHA256=
8 changes: 5 additions & 3 deletions godel/config/godel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,12 @@ plugins:
- https://github.com/{{index GroupParts 1}}/{{index GroupParts 2}}/releases/download/v{{Version}}/{{Product}}-{{Version}}-{{OS}}-{{Arch}}.tgz
plugins:
- locator:
id: com.palantir.godel-mod-plugin:mod-plugin:1.31.0
id: com.palantir.godel-mod-plugin:mod-plugin:1.49.0
checksums:
darwin-amd64: 8f276015660c126227691cdafb2a2410d9fed449631429650f68d7e253cb3761
linux-amd64: eaa14146ada31568c14203675b29e72a7399fb05f12213a5f3c629961e4d38d2
darwin-amd64: 704707521a1c7b9876b2f1be59e6efd01035a6af1dd39d201a560a7d1f4d436c
darwin-arm64: 486364b17b2d352ed8532e29d2c5d69e607997db4531e63ad6632aeb77846a13
linux-amd64: 239d8c56431e15fa71e4cc2a8ee5cd562cf38264b146587155423283ae205b90
linux-arm64: c27790f0a843935c4cc44bace1b4b6cf770213727ed86a96740e7fe875dd5121
environment:
GO111MODULE: "on"
GOFLAGS: "-mod=vendor"
Expand Down
4 changes: 4 additions & 0 deletions godel/config/golangci-lint-plugin.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
linters:
exclusions:
paths:
- generated
Comment thread
payoub125 marked this conversation as resolved.
10 changes: 5 additions & 5 deletions godelw
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
set -euo pipefail

# Version and checksums for godel. Values are populated by the godel "dist" task.
VERSION=2.127.0
DARWIN_AMD64_CHECKSUM=3e82d02d9e415c76992a2d9793e765172c180dc3570bd3a3becef903d37d88df
DARWIN_ARM64_CHECKSUM=bc715f6ea47ce0815e78890a1b85971ede98cd654533ff1e90e458fe09eedaa0
LINUX_AMD64_CHECKSUM=1b7e8561d1f3cd98bbea098a06be096aed886a832a525cd993faade33411e736
LINUX_ARM64_CHECKSUM=83d2bfab3f39d6795bfa9ed0d336552ec3f0ae321acdc35e3f9dd72a96a8c919
VERSION=2.152.0
DARWIN_AMD64_CHECKSUM=3f2a859406e6a8ef244e1d9cb7e382758897d1be69691a3f3728f568b3dd871d
DARWIN_ARM64_CHECKSUM=9e05c7651ac85e5a57f11c474abd78da2d255ea70c3743f8d179a23a3c61dadd
LINUX_AMD64_CHECKSUM=65cadd08c7f3d8825a9761102852811f990e89d6c7022172704589d56ece4241
LINUX_ARM64_CHECKSUM=a9daf24e64688ffd8317824f0292b55b4f3277270208366b861737fbd47a9b8f

# Downloads file at URL to destination path using wget or curl. Prints an error and exits if wget or curl is not present.
function download {
Expand Down
Loading