@socialgouv/fiches-vdd-types 2.1268.0 → 2.1270.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/fetch.yml +14 -2
- package/CHANGELOG.md +20 -0
- package/package.json +1 -1
|
@@ -5,11 +5,23 @@ on:
|
|
|
5
5
|
schedule:
|
|
6
6
|
- cron: "00 18 * * *"
|
|
7
7
|
|
|
8
|
+
permissions:
|
|
9
|
+
id-token: write # Required for OIDC token generation
|
|
10
|
+
contents: write
|
|
11
|
+
|
|
8
12
|
jobs:
|
|
9
13
|
fetch:
|
|
10
14
|
runs-on: ubuntu-latest
|
|
11
15
|
steps:
|
|
16
|
+
- name: Get GitHub App Token
|
|
17
|
+
id: token
|
|
18
|
+
uses: SocialGouv/token-bureau@main
|
|
19
|
+
with:
|
|
20
|
+
token-bureau-url: https://token-bureau.fabrique.social.gouv.fr
|
|
21
|
+
audience: socialgouv
|
|
22
|
+
|
|
12
23
|
- uses: actions/checkout@v4
|
|
24
|
+
|
|
13
25
|
- name: Set up Node.js
|
|
14
26
|
uses: actions/setup-node@v3
|
|
15
27
|
with:
|
|
@@ -48,7 +60,7 @@ jobs:
|
|
|
48
60
|
if: ${{ steps.metadata.outputs.data_status }}
|
|
49
61
|
env:
|
|
50
62
|
HUSKY: "0"
|
|
51
|
-
GITHUB_TOKEN: ${{
|
|
63
|
+
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
|
|
52
64
|
with:
|
|
53
65
|
add: "data"
|
|
54
66
|
author_name: ${{ secrets.SOCIALGROOVYBOT_NAME }}
|
|
@@ -73,7 +85,7 @@ jobs:
|
|
|
73
85
|
GIT_AUTHOR_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
|
|
74
86
|
GIT_COMMITTER_EMAIL: ${{ secrets.SOCIALGROOVYBOT_EMAIL }}
|
|
75
87
|
GIT_COMMITTER_NAME: ${{ secrets.SOCIALGROOVYBOT_NAME }}
|
|
76
|
-
GITHUB_TOKEN: ${{
|
|
88
|
+
GITHUB_TOKEN: ${{ steps.token.outputs.token }}
|
|
77
89
|
NPM_TOKEN: ${{ secrets.SOCIALGROOVYBOT_NPM_TOKEN }}
|
|
78
90
|
|
|
79
91
|
- uses: mattermost/action-mattermost-notify@master
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,23 @@
|
|
|
1
|
+
# [2.1270.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1269.0...v2.1270.0) (2025-01-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **ci:** permissions ([c83cd55](https://github.com/SocialGouv/fiches-vdd/commit/c83cd553c7645e9adee3718ec97ab1802bab6363))
|
|
7
|
+
* **ci-cd:** use token-bureau ([#228](https://github.com/SocialGouv/fiches-vdd/issues/228)) ([54891a7](https://github.com/SocialGouv/fiches-vdd/commit/54891a75408655546d810cdb2a2e4bd59aa5e9d4))
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
### Features
|
|
11
|
+
|
|
12
|
+
* **data:** 20250108_0912 update ([bd367a0](https://github.com/SocialGouv/fiches-vdd/commit/bd367a0130e1a533221abb5cdd07596f79fcbd75))
|
|
13
|
+
|
|
14
|
+
# [2.1269.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1268.0...v2.1269.0) (2025-01-06)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **data:** 20250106_1826 update ([ac9d1d2](https://github.com/SocialGouv/fiches-vdd/commit/ac9d1d21ee55324cbb03e98259e8c2b9bc18d400))
|
|
20
|
+
|
|
1
21
|
# [2.1268.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1267.0...v2.1268.0) (2025-01-05)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED