Skip to content

Commit ff26f43

Browse files
Bump the actions group with 3 updates
Bumps the actions group with 3 updates: [actions/create-github-app-token](https://github.com/actions/create-github-app-token), [actions/checkout](https://github.com/actions/checkout) and [softprops/action-gh-release](https://github.com/softprops/action-gh-release). Updates `actions/create-github-app-token` from 2.2.0 to 2.2.1 - [Release notes](https://github.com/actions/create-github-app-token/releases) - [Commits](actions/create-github-app-token@v2.2.0...v2.2.1) Updates `actions/checkout` from 6.0.0 to 6.0.1 - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v6.0.0...v6.0.1) Updates `softprops/action-gh-release` from 2.4.2 to 2.5.0 - [Release notes](https://github.com/softprops/action-gh-release/releases) - [Changelog](https://github.com/softprops/action-gh-release/blob/master/CHANGELOG.md) - [Commits](softprops/action-gh-release@v2.4.2...v2.5.0) --- updated-dependencies: - dependency-name: actions/create-github-app-token dependency-version: 2.2.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: actions/checkout dependency-version: 6.0.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: actions - dependency-name: softprops/action-gh-release dependency-version: 2.5.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: actions ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 8e230cd commit ff26f43

5 files changed

Lines changed: 15 additions & 15 deletions

File tree

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
steps:
1616
- name: Get token from Github App
1717
id: app_token
18-
uses: actions/create-github-app-token@v2.2.0
18+
uses: actions/create-github-app-token@v2.2.1
1919
with:
2020
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
2121
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}

.github/workflows/chromatic.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
CHROMATIC_PROJECT_TOKEN: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
1212
steps:
1313
- name: Checkout code
14-
uses: actions/checkout@v6.0.0
14+
uses: actions/checkout@v6.0.1
1515
with:
1616
fetch-depth: 0
1717

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: Install Dependencies
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v6.0.0
16+
- uses: actions/checkout@v6.0.1
1717
- name: Lookup node_modules cache
1818
id: node-modules-cache
1919
uses: actions/cache@v4.3.0
@@ -30,7 +30,7 @@ jobs:
3030
needs: install
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@v6.0.0
33+
- uses: actions/checkout@v6.0.1
3434
- name: Restore node_modules cache
3535
id: node-modules-cache
3636
uses: actions/cache/restore@v4.3.0
@@ -45,7 +45,7 @@ jobs:
4545
needs: install
4646
runs-on: ubuntu-latest
4747
steps:
48-
- uses: actions/checkout@v6.0.0
48+
- uses: actions/checkout@v6.0.1
4949
- name: Restore node_modules cache
5050
id: node-modules-cache
5151
uses: actions/cache/restore@v4.3.0
@@ -76,12 +76,12 @@ jobs:
7676
steps:
7777
- name: Checkout for Dependabot PR
7878
if: ${{ startsWith(github.head_ref || '', 'dependabot/') }}
79-
uses: actions/checkout@v6.0.0
79+
uses: actions/checkout@v6.0.1
8080
with:
8181
ref: ${{ github.head_ref }}
8282
- name: Checkout for others
8383
if: ${{ !startsWith(github.head_ref || '', 'dependabot/') }}
84-
uses: actions/checkout@v6.0.0
84+
uses: actions/checkout@v6.0.1
8585
- name: Restore node_modules cache
8686
id: node-modules-cache
8787
uses: actions/cache/restore@v4.3.0
@@ -124,7 +124,7 @@ jobs:
124124
needs: install
125125
runs-on: ubuntu-latest
126126
steps:
127-
- uses: actions/checkout@v6.0.0
127+
- uses: actions/checkout@v6.0.1
128128
- name: Restore node_modules cache
129129
id: node-modules-cache
130130
uses: actions/cache/restore@v4.3.0
@@ -157,7 +157,7 @@ jobs:
157157
needs: install
158158
runs-on: ubuntu-latest
159159
steps:
160-
- uses: actions/checkout@v6.0.0
160+
- uses: actions/checkout@v6.0.1
161161
- name: Restore node_modules cache
162162
id: node-modules-cache
163163
uses: actions/cache/restore@v4.3.0
@@ -198,7 +198,7 @@ jobs:
198198
needs: build
199199
runs-on: ${{ matrix.platform == 'amd64' && 'ubuntu-latest' || 'ubuntu-arm64' }}
200200
steps:
201-
- uses: actions/checkout@v6.0.0
201+
- uses: actions/checkout@v6.0.1
202202
- name: Restore build cache
203203
uses: actions/cache/restore@v4.3.0
204204
with:

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ jobs:
8484
VERSION: ${{ needs.get-version.outputs.version }}
8585
RELEASE_DC_FILENAME: openops-dc-${{ needs.get-version.outputs.version }}.zip
8686
steps:
87-
- uses: actions/checkout@v6.0.0
87+
- uses: actions/checkout@v6.0.1
8888
- name: Create a release file
8989
run: |
9090
cp THIRD_PARTY_LICENSES.txt LICENSE NOTICE deploy/docker-compose
@@ -94,7 +94,7 @@ jobs:
9494
- name: Create a GitHub release
9595
id: create-github-release
9696
if: inputs.github_release
97-
uses: softprops/action-gh-release@v2.4.2
97+
uses: softprops/action-gh-release@v2.5.0
9898
with:
9999
target_commitish: ${{ github.sha }}
100100
tag_name: ${{ env.VERSION }}
@@ -133,7 +133,7 @@ jobs:
133133
steps:
134134
- name: Get token from Github App
135135
id: app_token
136-
uses: actions/create-github-app-token@v2.2.0
136+
uses: actions/create-github-app-token@v2.2.1
137137
with:
138138
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
139139
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}
@@ -154,7 +154,7 @@ jobs:
154154
steps:
155155
- name: Get GitHub App token
156156
id: app_token
157-
uses: actions/create-github-app-token@v2.2.0
157+
uses: actions/create-github-app-token@v2.2.1
158158
with:
159159
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
160160
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}

.github/workflows/sync-internal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- name: Get token from Github App
1313
id: app_token
14-
uses: actions/create-github-app-token@v2.2.0
14+
uses: actions/create-github-app-token@v2.2.1
1515
with:
1616
app-id: ${{ vars.DEVOPS_GITHUB_APP_ID }}
1717
private-key: ${{ secrets.DEVOPS_GITHUB_APP_PEM }}

0 commit comments

Comments
 (0)