Skip to content

Commit

Permalink
Merge pull request #444 from onflow/dependabot/github_actions/actions…
Browse files Browse the repository at this point in the history
…/checkout-4.2.0

Bump actions/checkout from 4.1.7 to 4.2.0
  • Loading branch information
fxamacker authored Sep 30, 2024
2 parents fad22d0 + ab84b0e commit f4b7290
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 10 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ on:
- 'feature/**'
- 'v**'

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true

jobs:

# Test on various OS with default Go version.
Expand All @@ -31,7 +35,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
go-version: ['1.20', 1.21, 1.22]
go-version: ['1.22', '1.23']

steps:
- name: Install Go
Expand All @@ -41,7 +45,7 @@ jobs:
check-latest: true

- name: Checkout code
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 1

Expand Down
9 changes: 3 additions & 6 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,9 @@ on:
- 'feature/**'
- 'v**'
pull_request:
branches:
- main
- 'feature/**'
- 'v**'
# Run CodeQL on PR in all branches.
schedule:
- cron: '30 5 * * 4'
- cron: '45 12 * * *' # Daily at 12:45 UTC / 7:45 AM Central

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
Expand All @@ -37,7 +34,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ permissions: {}

on: [push, pull_request]

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
Expand All @@ -16,7 +20,7 @@ jobs:
contents: read

steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 2

Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/safer-golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ env:
OPENSSL_DGST_CMD: openssl dgst -sha256 -r
CURL_CMD: curl --proto =https --tlsv1.2 --location --silent --show-error --fail

concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
cancel-in-progress: true

jobs:
main:
name: Lint
Expand All @@ -32,7 +36,7 @@ jobs:
contents: read
steps:
- name: Checkout source
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
with:
fetch-depth: 1

Expand Down

0 comments on commit f4b7290

Please sign in to comment.