From 7b0257644efd830708b1764736fc79d8211d4f20 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 10:03:03 +0000 Subject: [PATCH] Bump actions/checkout from 4.1.2 to 4.1.3 Bumps [actions/checkout](https://github.com/actions/checkout) from 4.1.2 to 4.1.3. - [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/v4.1.2...v4.1.3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/build.yml | 2 +- .github/workflows/cloc.yml | 2 +- .github/workflows/cov.yml | 2 +- .github/workflows/golangci.yml | 2 +- .github/workflows/nightly.yml | 4 ++-- .github/workflows/release.yml | 6 +++--- .github/workflows/test.yml | 2 +- 7 files changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 91ea6e0..fcc8bb8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -10,7 +10,7 @@ jobs: name: Build runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. diff --git a/.github/workflows/cloc.yml b/.github/workflows/cloc.yml index 6649874..4d16cad 100644 --- a/.github/workflows/cloc.yml +++ b/.github/workflows/cloc.yml @@ -18,7 +18,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 # Runs djdefi/cloc-action - name: Count Lines of Code (cloc) diff --git a/.github/workflows/cov.yml b/.github/workflows/cov.yml index 52317c5..374f0a0 100644 --- a/.github/workflows/cov.yml +++ b/.github/workflows/cov.yml @@ -18,7 +18,7 @@ jobs: # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. diff --git a/.github/workflows/golangci.yml b/.github/workflows/golangci.yml index 2ac01c2..d9e1d2c 100644 --- a/.github/workflows/golangci.yml +++ b/.github/workflows/golangci.yml @@ -19,7 +19,7 @@ jobs: - uses: actions/setup-go@v5 with: go-version: 1.22 - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - name: golangci-lint uses: golangci/golangci-lint-action@v4 with: diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index e28615d..8f89c70 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -10,7 +10,7 @@ jobs: matrix: os: [ubuntu-20.04, macos-latest] steps: - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. @@ -29,7 +29,7 @@ jobs: [native-build-cli] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - uses: actions/download-artifact@v4 with: name: jprovd-Linux diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5d606fc..85fe9c7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: matrix: os: [ubuntu-20.04, macos-latest] steps: - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use. @@ -31,7 +31,7 @@ jobs: # MacOS-ARM64-CLI: # runs-on: ubuntu-20.04 # steps: - # - uses: actions/checkout@v4.1.2 + # - uses: actions/checkout@v4.1.3 # - uses: actions/setup-go@v5 # with: # go-version: 1.19 # The Go version to download (if necessary) and use. @@ -54,7 +54,7 @@ jobs: [native-build-cli] runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - name: Get the version id: get_version run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 3e1663e..dfa61a2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: name: Test runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4.1.2 + - uses: actions/checkout@v4.1.3 - uses: actions/setup-go@v5 with: go-version: 1.22 # The Go version to download (if necessary) and use.