From 6545bf7fd55e73a6f3632b3454157eec9dd28369 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 5 Sep 2023 00:25:32 +0000 Subject: [PATCH] Bump actions/checkout from 3 to 4 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/go-test-darwin.yaml | 2 +- .github/workflows/go-test-linux.yaml | 2 +- .github/workflows/go-test-windows.yaml | 2 +- .github/workflows/gosec.yaml | 2 +- .github/workflows/make-go-tag.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/go-test-darwin.yaml b/.github/workflows/go-test-darwin.yaml index b4d0c61..1571b78 100644 --- a/.github/workflows/go-test-darwin.yaml +++ b/.github/workflows/go-test-darwin.yaml @@ -14,7 +14,7 @@ jobs: name: Go ${{ matrix.go }} - darwin steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup go diff --git a/.github/workflows/go-test-linux.yaml b/.github/workflows/go-test-linux.yaml index fa387ff..b930c3e 100644 --- a/.github/workflows/go-test-linux.yaml +++ b/.github/workflows/go-test-linux.yaml @@ -14,7 +14,7 @@ jobs: name: Go ${{ matrix.go }} - linux steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup go diff --git a/.github/workflows/go-test-windows.yaml b/.github/workflows/go-test-windows.yaml index 8f51cef..187b0fc 100644 --- a/.github/workflows/go-test-windows.yaml +++ b/.github/workflows/go-test-windows.yaml @@ -14,7 +14,7 @@ jobs: name: Go ${{ matrix.go }} - windows steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup go diff --git a/.github/workflows/gosec.yaml b/.github/workflows/gosec.yaml index e52e956..42443d8 100644 --- a/.github/workflows/gosec.yaml +++ b/.github/workflows/gosec.yaml @@ -16,7 +16,7 @@ jobs: GO111MODULE: on steps: - name: Checkout Source - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Run Gosec Security Scanner uses: securego/gosec@master with: diff --git a/.github/workflows/make-go-tag.yaml b/.github/workflows/make-go-tag.yaml index e38321f..15d098c 100644 --- a/.github/workflows/make-go-tag.yaml +++ b/.github/workflows/make-go-tag.yaml @@ -11,6 +11,6 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout repository - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Make go version tag uses: Senzing/github-action-make-go-tag@main