From 841050aa9e5cf1f8d419443ce3816a6cc209b790 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20J=C3=BCrgensmeyer?= Date: Wed, 27 Mar 2024 11:24:52 +0100 Subject: [PATCH] Add dependabot for actions --- .github/dependabot.yml | 4 ++++ .github/workflows/go.yml | 8 ++++---- .github/workflows/release.yml | 6 +++--- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b444581..5c8b21c 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -9,3 +9,7 @@ updates: directory: "/" # Location of package manifests schedule: interval: "daily" + - package-ecosystem: "github-actions" + directory: "/" + schedule: + interval: "daily" diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 5c9f74a..eb1126f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -12,12 +12,12 @@ jobs: name: Test runs-on: ubuntu-22.04 steps: + - name: Check out code into the Go module directory + uses: actions/checkout@v4 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: - go-version: "^1.20" - - name: Check out code into the Go module directory - uses: actions/checkout@v3 + go-version: stable - name: Get dependencies run: | go get -v -t -d ./... diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e467502..43ed11d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,13 +9,13 @@ jobs: runs-on: ubuntu-22.04 steps: - name: Checkout - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Set up Go - uses: actions/setup-go@v3 + uses: actions/setup-go@v5 with: - go-version: "^1.19" + go-version: stable - name: Run GoReleaser uses: goreleaser/goreleaser-action@v2 with: