From 9245450ee79fee0e87cff1cdb372df2e7f7469fe Mon Sep 17 00:00:00 2001 From: Mark McDonnell Date: Thu, 19 Oct 2023 11:01:24 +0100 Subject: [PATCH] build(deps): bump github actions dependencies (#52) - actions/checkout - crazy-max/ghaction-import-gpg - goreleaser/goreleaser-action --- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fa2243b..0ae7571 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,7 +17,7 @@ jobs: goreleaser: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: # Allow goreleaser to access older tag information. fetch-depth: 0 @@ -26,13 +26,13 @@ jobs: cache: true go-version-file: 'go.mod' - name: Import GPG key - uses: crazy-max/ghaction-import-gpg@v5 + uses: crazy-max/ghaction-import-gpg@v6 id: import_gpg with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} passphrase: ${{ secrets.PASSPHRASE }} - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v4 + uses: goreleaser/goreleaser-action@v5 with: args: release --clean env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f99b50c..54fab81 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest timeout-minutes: 5 steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: cache: true @@ -34,7 +34,7 @@ jobs: name: Generate runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: cache: true @@ -61,7 +61,7 @@ jobs: - '1.3.*' - '1.4.*' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-go@v4 with: cache: true