Skip to content

Commit 269a42e

Browse files
Bump the all-actions group across 1 directory with 7 updates
Bumps the all-actions group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [actions/checkout](https://github.com/actions/checkout) | `4` | `6` | | [actions/setup-node](https://github.com/actions/setup-node) | `4` | `6` | | [preactjs/compressed-size-action](https://github.com/preactjs/compressed-size-action) | `2` | `3` | | [github/codeql-action](https://github.com/github/codeql-action) | `3` | `4` | | [actions/cache](https://github.com/actions/cache) | `4` | `5` | | [stellar/stellar-cli](https://github.com/stellar/stellar-cli) | `23.1.4` | `23.4.1` | | [actions/create-github-app-token](https://github.com/actions/create-github-app-token) | `1` | `2` | Updates `actions/checkout` from 4 to 6 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) Updates `actions/setup-node` from 4 to 6 - [Release notes](https://github.com/actions/setup-node/releases) - [Commits](actions/setup-node@v4...v6) Updates `preactjs/compressed-size-action` from 2 to 3 - [Release notes](https://github.com/preactjs/compressed-size-action/releases) - [Commits](preactjs/compressed-size-action@v2...v3) Updates `github/codeql-action` from 3 to 4 - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](github/codeql-action@v3...v4) Updates `actions/cache` from 4 to 5 - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v4...v5) Updates `stellar/stellar-cli` from 23.1.4 to 23.4.1 - [Release notes](https://github.com/stellar/stellar-cli/releases) - [Commits](stellar/stellar-cli@v23.1.4...v23.4.1) Updates `actions/create-github-app-token` from 1 to 2 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v1...v2) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/setup-node dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: preactjs/compressed-size-action dependency-version: '3' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: github/codeql-action dependency-version: '4' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions - dependency-name: stellar/stellar-cli dependency-version: 23.4.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-actions - dependency-name: actions/create-github-app-token dependency-version: '2' dependency-type: direct:production update-type: version-update:semver-major dependency-group: all-actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 9ec7ffd commit 269a42e

File tree

8 files changed

+22
-22
lines changed

8 files changed

+22
-22
lines changed

.github/workflows/bundle_size.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ jobs:
99
NODE: "20"
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v4
12+
- uses: actions/checkout@v6
1313

1414
- name: Install Node.js
15-
uses: actions/setup-node@v4
15+
uses: actions/setup-node@v6
1616
with:
1717
node-version: ${{ env.NODE }}
1818

@@ -25,7 +25,7 @@ jobs:
2525
run: yarn build:prod
2626

2727
- name: Report Bundle Size
28-
uses: preactjs/compressed-size-action@v2
28+
uses: preactjs/compressed-size-action@v3
2929
with:
3030
repo-token: ${{ secrets.GITHUB_TOKEN }}
3131
pattern: "dist/*.js"

.github/workflows/codeql-analysis.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,16 @@ jobs:
2222

2323
steps:
2424
- name: Checkout repository
25-
uses: actions/checkout@v4
25+
uses: actions/checkout@v6
2626

2727
- name: Initialize CodeQL
28-
uses: github/codeql-action/init@v3
28+
uses: github/codeql-action/init@v4
2929
with:
3030
languages: ${{ matrix.language }}
3131
config-file: .github/codeql-config.yml
3232

3333
- name: Autobuild
34-
uses: github/codeql-action/autobuild@v3
34+
uses: github/codeql-action/autobuild@v4
3535

3636
- name: Perform CodeQL Analysis
37-
uses: github/codeql-action/analyze@v3
37+
uses: github/codeql-action/analyze@v4

.github/workflows/e2e.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,18 @@ jobs:
3232
--health-timeout 5s
3333
--health-retries 50
3434
steps:
35-
- uses: actions/checkout@v4
35+
- uses: actions/checkout@v6
3636
with:
3737
submodules: true
38-
- uses: actions/cache@v4
38+
- uses: actions/cache@v5
3939
with:
4040
path: |
4141
target/
4242
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
43-
- uses: actions/setup-node@v4
43+
- uses: actions/setup-node@v6
4444
with:
4545
node-version: ${{ env.NODE }}
46-
- uses: stellar/stellar-cli@v23.4.0
46+
- uses: stellar/stellar-cli@v25.2.0
4747

4848
# Install system dependencies required for Stellar CLI
4949
- name: Install system dependencies

.github/workflows/format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
runs-on: ubuntu-latest
1111
steps:
1212
- name: Checkout
13-
uses: actions/checkout@v4
13+
uses: actions/checkout@v6
1414

1515
- name: Use Node.js 20
16-
uses: actions/setup-node@v4
16+
uses: actions/setup-node@v6
1717
with:
1818
node-version: 20
1919

.github/workflows/gh_pages.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Checkout SDK
11-
uses: actions/checkout@v4
11+
uses: actions/checkout@v6
1212
with:
1313
fetch-depth: 0
1414

1515
- name: Checkout Base
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717
with:
1818
repository: stellar/js-stellar-base
1919
path: js-stellar-base
2020

2121
- name: Install Node (20.x)
22-
uses: actions/setup-node@v4
22+
uses: actions/setup-node@v6
2323
with:
2424
node-version: '20.x'
2525

@@ -30,7 +30,7 @@ jobs:
3030
run: yarn build:prod
3131

3232
- name: Checkout GH pages
33-
uses: actions/checkout@v4
33+
uses: actions/checkout@v6
3434
with:
3535
repository: stellar/js-stellar-sdk
3636
ref: gh-pages

.github/workflows/npm_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- name: Checkout
16-
uses: actions/checkout@v4
16+
uses: actions/checkout@v6
1717

1818
- name: Install Node
19-
uses: actions/setup-node@v4
19+
uses: actions/setup-node@v6
2020
with:
2121
node-version: '20.x'
2222
registry-url: 'https://registry.npmjs.org'

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ jobs:
1717

1818
steps:
1919
- name: Checkout
20-
uses: actions/checkout@v4
20+
uses: actions/checkout@v6
2121

2222
- name: Use Node.js ${{ matrix.node-version }}
23-
uses: actions/setup-node@v4
23+
uses: actions/setup-node@v6
2424
with:
2525
node-version: ${{ matrix.node-version }}
2626

.github/workflows/update-completed-sprint-on-issue-closed.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
steps:
1313
- name: Generate token
1414
id: generate_token
15-
uses: actions/create-github-app-token@v1
15+
uses: actions/create-github-app-token@v3
1616
with:
1717
app-id: ${{ secrets.GH_PROJECT_MANAGEMENT_APP_ID }}
1818
private-key: ${{ secrets.GH_PROJECT_MANAGEMENT_APP_PEM }}

0 commit comments

Comments
 (0)