@socialgouv/fiches-vdd-types 2.1269.0 → 2.1271.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.1271.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1270.0...v2.1271.0) (2025-01-08)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* **data:** 20250108_1826 update ([b6d1c0a](https://github.com/SocialGouv/fiches-vdd/commit/b6d1c0ae94da2dfef904f642a83b31ec3b114e79))
|
|
7
|
+
|
|
8
|
+
# [2.1270.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1269.0...v2.1270.0) (2025-01-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **ci:** permissions ([c83cd55](https://github.com/SocialGouv/fiches-vdd/commit/c83cd553c7645e9adee3718ec97ab1802bab6363))
|
|
14
|
+
* **ci-cd:** use token-bureau ([#228](https://github.com/SocialGouv/fiches-vdd/issues/228)) ([54891a7](https://github.com/SocialGouv/fiches-vdd/commit/54891a75408655546d810cdb2a2e4bd59aa5e9d4))
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Features
|
|
18
|
+
|
|
19
|
+
* **data:** 20250108_0912 update ([bd367a0](https://github.com/SocialGouv/fiches-vdd/commit/bd367a0130e1a533221abb5cdd07596f79fcbd75))
|
|
20
|
+
|
|
1
21
|
# [2.1269.0](https://github.com/SocialGouv/fiches-vdd/compare/v2.1268.0...v2.1269.0) (2025-01-06)
|
|
2
22
|
|
|
3
23
|
|
package/package.json
CHANGED