diff --git a/.gitea/workflows/CI.yml b/.gitea/workflows/CI.yml index f05780b..5df5153 100644 --- a/.gitea/workflows/CI.yml +++ b/.gitea/workflows/CI.yml @@ -8,10 +8,10 @@ jobs: name: lint runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: - go-version: 1.24.6 + go-version: 1.25.0 - name: golangci-lint uses: golangci/golangci-lint-action@v7 with: @@ -21,9 +21,9 @@ jobs: name: test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions/setup-go@v5 with: - go-version: 1.24.6 + go-version: 1.25.0 - name: Test run: go test ./... diff --git a/.gitea/workflows/pr.yml b/.gitea/workflows/pr.yml index b8f83cb..3e5367a 100644 --- a/.gitea/workflows/pr.yml +++ b/.gitea/workflows/pr.yml @@ -15,7 +15,7 @@ jobs: - name: Install go uses: actions/setup-go@v5 with: - go-version: 1.24.6 + go-version: 1.25.0 - name: Run Pull Request Lint Action uses: https://git.kjan.de/actions/pull-request-lint@main