From 480a8faca47a2e6178404047655c0b7929051f10 Mon Sep 17 00:00:00 2001 From: Luis Davim Date: Sun, 1 Dec 2024 13:06:34 +0000 Subject: [PATCH] chore: update github-actions --- .github/dependabot.yml | 7 +++++++ .github/workflows/workflow.yml | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..d202a33 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,7 @@ +version: 2 +updates: + - package-ecosystem: "github-actions" + directory: "/" + schedule: + # Check for updates to GitHub Actions every week + interval: "weekly" diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index 60b1a19..2feb264 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -16,12 +16,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@master - - uses: actions/setup-go@v3 + - uses: actions/setup-go@v5 with: go-version: 1.22 - name: golangci-lint - uses: golangci/golangci-lint-action@v3 + uses: golangci/golangci-lint-action@v6 with: version: v1.46 args: --timeout 5m @@ -35,7 +35,7 @@ jobs: go: ["1.22"] steps: - name: Go ${{ matrix.go }} - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: go-version: ${{ matrix.go }} - name: Checkout source code