Skip to content
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
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* `actions/checkout` bumped to 7 (from 6) [PR 2763](https://github.com/provenance-io/provenance/pull/2763).
2 changes: 1 addition & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
PR_TARGET: ${{ github.event.pull_request.base.ref }}
steps:
- name: Checkout PR Branch
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
# Depending on your needs, you can use a token that will re-trigger workflows
# See https://github.com/stefanzweifel/git-auto-commit-action#commits-made-by-this-action-do-not-trigger-new-workflow-runs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v6
uses: actions/checkout@v7

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
heighliner-docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: docker/setup-buildx-action@v4

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
docker:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-go@v6
with:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
contents: read
packages: write
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7

- uses: actions/setup-go@v6
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
name: golangci-lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/proto-registry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Buf setup action
uses: bufbuild/buf-setup-action@v1.50.0
- name: Buf push 'third_party/proto'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/proto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: Protobuf Checks
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup go
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
name: Proto Format and Generation Check
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
with:
fetch-depth: 0
- name: Setup Go
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
name: Build OSX
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup go
uses: actions/setup-go@v6
with:
Expand All @@ -91,7 +91,7 @@ jobs:
GOTOOLCHAIN: local
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup go
uses: actions/setup-go@v6
with:
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
name: Protobuf Push
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Buf setup action
uses: bufbuild/buf-setup-action@v1.50.0
- name: Buf push 'proto/'
Expand All @@ -137,7 +137,7 @@ jobs:
name: Create Release
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Create release ${{ needs.build_init.outputs.version }}
uses: actions/create-release@v1
id: create_release
Expand All @@ -161,7 +161,7 @@ jobs:
name: Attach Release Artifacts
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Setup go
uses: actions/setup-go@v6
with:
Expand Down Expand Up @@ -224,7 +224,7 @@ jobs:
name: Java/Kotlin Proto Publishing
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7

- name: Java Setup
uses: actions/setup-java@v5
Expand Down Expand Up @@ -264,7 +264,7 @@ jobs:
name: NPM Proto Publishing
steps:
- name: Checkout
uses: actions/checkout@v6
uses: actions/checkout@v7
- name: Publish
uses: provenance-io/npm-publish-action@v1.1
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/sims.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'skip-sims')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
Expand All @@ -50,7 +50,7 @@ jobs:
if: needs.setup.outputs.should-run
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Output setup
run: |
echo " should-run: [${{ needs.setup.outputs.should-run }}]"
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Define test-logs
id: test-logs
run: |
Expand Down Expand Up @@ -118,7 +118,7 @@ jobs:
os: ["ubuntu-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- name: Define test-logs
id: test-logs
run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
setup-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: technote-space/get-diff-action@v6.1.2
with:
PATTERNS: |
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
env:
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# CodeCov requires fetch-depth > 1
fetch-depth: 2
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
# it's in the steps below (except the checkout step).
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
with:
# CodeCov requires fetch-depth > 1
fetch-depth: 2
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
env:
LD_LIBRARY_PATH: /usr/local/lib:/usr/local/lib/x86_64-linux-gnu
steps:
- uses: actions/checkout@v6
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
if: needs.setup-tests.outputs.should-run
with:
Expand Down
Loading