Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump actions/checkout from 4.0.0 to 4.1.0 #364

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: 1.20.2 # The Go version to download (if necessary) and use.
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: 1.20.2 # The Go version to download (if necessary) and use.
Expand All @@ -31,7 +31,7 @@ jobs:
[build-cli]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- uses: EndBug/latest-tag@latest
with:
# You can change the name of the tag with this input.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cloc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.0
- uses: actions/checkout@v4.1.0

# Runs djdefi/cloc-action
- name: Count Lines of Code (cloc)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analizer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v4.0.0
uses: actions/checkout@v4.1.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.0.0
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: 1.20.2 # The Go version to download (if necessary) and use.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/setup-go@v4
with:
go-version: 1.20.2
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
matrix:
os: [ubuntu-20.04, macos-latest]
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: 1.20.2 # The Go version to download (if necessary) and use.
Expand All @@ -34,7 +34,7 @@ jobs:
# MacOS-ARM64-CLI:
# runs-on: ubuntu-20.04
# steps:
# - uses: actions/checkout@v4.0.0
# - uses: actions/checkout@v4.1.0
# - uses: actions/setup-go@v4
# with:
# go-version: 1.19 # The Go version to download (if necessary) and use.
Expand All @@ -57,7 +57,7 @@ jobs:
[native-build-cli]
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\/v/}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-full-app-sim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: 1.20.2 # The Go version to download (if necessary) and use.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-import-export-sim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: 1.20.2 # The Go version to download (if necessary) and use.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.0.0
- uses: actions/checkout@v4.1.0
- uses: actions/setup-go@v4
with:
go-version: 1.20.2 # The Go version to download (if necessary) and use.
Expand Down
Loading