Skip to content
This repository was archived by the owner on Jul 17, 2025. It is now read-only.

Commit cb0de70

Browse files
committed
init
1 parent ebaa563 commit cb0de70

7 files changed

Lines changed: 14 additions & 14 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ jobs:
2727

2828
# Initializes the CodeQL tools for scanning.
2929
- name: Initialize CodeQL
30-
uses: github/codeql-action/init@v2
30+
uses: github/codeql-action/init@v3
3131
with:
3232
languages: ${{ matrix.language }}
3333

3434
- name: Autobuild
35-
uses: github/codeql-action/autobuild@v2
35+
uses: github/codeql-action/autobuild@v3
3636

3737
- name: Perform CodeQL Analysis
38-
uses: github/codeql-action/analyze@v2
38+
uses: github/codeql-action/analyze@v3

.github/workflows/reusable-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ on:
1313
type: string
1414

1515
env:
16-
GO_VERSION: "1.22.6"
16+
GO_VERSION: "1.24.2"
1717

1818
jobs:
1919
prepare-linux:

.github/workflows/verify.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- develop
1010

1111
env:
12-
GO_VERSION: "1.22.6"
12+
GO_VERSION: "1.24.2"
1313

1414
jobs:
1515
verify:

Dockerfile.builder

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile used for the compilation of the statically compiled methodwebtest binary
2-
FROM golang:1.22.4-alpine3.20 as base
2+
FROM golang:1.24.2-alpine3.20 as base
33
ARG GORELEASER_VERSION="v2.0.1"
44
ARG CLI_NAME="methodwebtest"
55
ARG TARGETARCH

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module github.com/Method-Security/methodwebtest
22

3-
go 1.22
3+
go 1.24
44

5-
toolchain go1.22.5
5+
toolchain go1.24.2
66

77
require (
88
github.com/Method-Security/pkg v0.0.3

godel/config/godel.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
distributionURL=https://github.com/palantir/godel/releases/download/v2.109.0/godel-2.109.0.tgz
1+
distributionURL=https://github.com/palantir/godel/releases/download/v2.127.0/godel-2.127.0.tgz
22
distributionSHA256=

godelw

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
set -euo pipefail
44

55
# Version and checksums for godel. Values are populated by the godel "dist" task.
6-
VERSION=2.109.0
7-
DARWIN_AMD64_CHECKSUM=4acc8002b8a4ed666ce75d9e2a23d58e78ae3ef960c22c7588414ab09d71ad85
8-
DARWIN_ARM64_CHECKSUM=d4bd42f50fc5f1c8f1fb751f19790683236e71dac3098fe8eb3e01c37b0606b0
9-
LINUX_AMD64_CHECKSUM=89ea803a20ed7996f1a6ff7f21f60270b6d34d4b98e316aa6280c51e72550177
10-
LINUX_ARM64_CHECKSUM=f4a4386a157eda73b3d8d9e8eb39a7b9760906176c8b26a701dd9f7608140e73
6+
VERSION=2.127.0
7+
DARWIN_AMD64_CHECKSUM=3e82d02d9e415c76992a2d9793e765172c180dc3570bd3a3becef903d37d88df
8+
DARWIN_ARM64_CHECKSUM=bc715f6ea47ce0815e78890a1b85971ede98cd654533ff1e90e458fe09eedaa0
9+
LINUX_AMD64_CHECKSUM=1b7e8561d1f3cd98bbea098a06be096aed886a832a525cd993faade33411e736
10+
LINUX_ARM64_CHECKSUM=83d2bfab3f39d6795bfa9ed0d336552ec3f0ae321acdc35e3f9dd72a96a8c919
1111

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

0 commit comments

Comments
 (0)