Skip to content

Commit 44a6437

Browse files
ci: bump the github-actions group across 1 directory with 3 updates
Bumps the github-actions group with 3 updates in the / directory: [actions/checkout](https://github.com/actions/checkout), [actions/upload-artifact](https://github.com/actions/upload-artifact) and [actions/download-artifact](https://github.com/actions/download-artifact). Updates `actions/checkout` from 5 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...v6) Updates `actions/upload-artifact` from 5 to 6 - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v5...v6) Updates `actions/download-artifact` from 6 to 7 - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](actions/download-artifact@v6...v7) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: actions/download-artifact dependency-version: '7' dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 5c2b576 commit 44a6437

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/ci-lint.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
runs-on: ubuntu-latest
2828
steps:
2929
- name: Checkout code
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
# Check out pull request's HEAD commit instead of the merge commit to
3333
# prevent gitlint from failing due to too long commit message titles,
@@ -97,7 +97,7 @@ jobs:
9797
# Always run this step so that all linting errors can be seen at once.
9898
if: always()
9999
- name: Ensure a clean code checkout
100-
uses: actions/checkout@v5
100+
uses: actions/checkout@v6
101101
with:
102102
clean: true
103103
if: always()

.github/workflows/ci-reproducibility.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
build_number: [1, 2]
3232
steps:
3333
- name: Checkout code
34-
uses: actions/checkout@v5
34+
uses: actions/checkout@v6
3535
with:
3636
# NOTE: We make a git checkout to a unique directory for each build to
3737
# catch reproducibility issues with code in different local paths.
@@ -92,7 +92,7 @@ jobs:
9292
OASIS_NODE_MAKE_PATH: go/oasis-node/oasis-node
9393
OASIS_NODE_GORELEASER_PATH: dist/oasis-node_linux_amd64_v1/oasis-node
9494
- name: Upload checksums
95-
uses: actions/upload-artifact@v5
95+
uses: actions/upload-artifact@v6
9696
with:
9797
name: oasis-node-SHA256SUMs-build${{ matrix.build_number }}
9898
path: oasis-node-SHA256SUMs
@@ -105,12 +105,12 @@ jobs:
105105
runs-on: ubuntu-latest
106106
steps:
107107
- name: Download checksums for build 1
108-
uses: actions/download-artifact@v6
108+
uses: actions/download-artifact@v7
109109
with:
110110
name: oasis-node-SHA256SUMs-build1
111111
path: oasis-node-SHA256SUMs-build1
112112
- name: Download checksum for build 2
113-
uses: actions/download-artifact@v6
113+
uses: actions/download-artifact@v7
114114
with:
115115
name: oasis-node-SHA256SUMs-build2
116116
path: oasis-node-SHA256SUMs-build2

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
runs-on: ubuntu-latest
4242
steps:
4343
- name: Checkout code
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545
with:
4646
# Check out pull request's HEAD commit instead of the merge commit.
4747
ref: ${{ github.event.pull_request.head.sha }}

.github/workflows/release-dev.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
runs-on: ubuntu-22.04
2424
steps:
2525
- name: Checkout code
26-
uses: actions/checkout@v5
26+
uses: actions/checkout@v6
2727
with:
2828
# Fetch all history as the recommended way to fetch all tags and
2929
# branches of the project.
@@ -75,7 +75,7 @@ jobs:
7575
run: |
7676
make release-build
7777
- name: Upload release artifacts
78-
uses: actions/upload-artifact@v5
78+
uses: actions/upload-artifact@v6
7979
with:
8080
name: oasis-core-dev-release
8181
path: dist/*.tar.gz

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
runs-on: ubuntu-22.04
2626
steps:
2727
- name: Checkout code
28-
uses: actions/checkout@v5
28+
uses: actions/checkout@v6
2929
with:
3030
# Fetch all history as the recommended way to fetch all tags and
3131
# branches of the project.

0 commit comments

Comments
 (0)