Compare commits
1 Commits
update-git
...
update-git
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
abc1d1ef77 |
@@ -27,6 +27,3 @@ golangci-lint = "1.64.8" # See note about about overrides if you need to customi
|
|||||||
[settings]
|
[settings]
|
||||||
experimental = true # Required for Go binaries (e.g. pulumictl).
|
experimental = true # Required for Go binaries (e.g. pulumictl).
|
||||||
lockfile = false
|
lockfile = false
|
||||||
|
|
||||||
[plugins]
|
|
||||||
vfox-pulumi = "https://github.com/pulumi/vfox-pulumi"
|
|
||||||
|
|||||||
112
.github/workflows/build.yml
vendored
112
.github/workflows/build.yml
vendored
@@ -47,7 +47,7 @@ jobs:
|
|||||||
pull-requests: write # For schema check comment.
|
pull-requests: write # For schema check comment.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -122,6 +122,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar provider binaries
|
- name: Tar provider binaries
|
||||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
||||||
@@ -170,7 +218,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -211,6 +259,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar SDK folder
|
- name: Tar SDK folder
|
||||||
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
||||||
@@ -239,7 +335,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -284,7 +380,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets and Pulumi access token OIDC.
|
id-token: write # For ESC secrets and Pulumi access token OIDC.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -381,7 +477,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -454,7 +550,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -474,7 +570,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Checkout Scripts Repo
|
- name: Checkout Scripts Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
path: ci-scripts
|
path: ci-scripts
|
||||||
repository: pulumi/scripts
|
repository: pulumi/scripts
|
||||||
@@ -535,7 +631,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|||||||
2
.github/workflows/command-dispatch.yml
vendored
2
.github/workflows/command-dispatch.yml
vendored
@@ -25,7 +25,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- env:
|
- env:
|
||||||
|
|||||||
2
.github/workflows/community-moderation.yml
vendored
2
.github/workflows/community-moderation.yml
vendored
@@ -6,7 +6,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- id: schema_changed
|
- id: schema_changed
|
||||||
|
|||||||
112
.github/workflows/prerelease.yml
vendored
112
.github/workflows/prerelease.yml
vendored
@@ -36,7 +36,7 @@ jobs:
|
|||||||
name: prerequisites
|
name: prerequisites
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -111,6 +111,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar provider binaries
|
- name: Tar provider binaries
|
||||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
||||||
@@ -159,7 +207,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -200,6 +248,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit ${{ matrix.language }} SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit ${{ matrix.language }} SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar SDK folder
|
- name: Tar SDK folder
|
||||||
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
||||||
@@ -237,7 +333,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets and Pulumi access token OIDC.
|
id-token: write # For ESC secrets and Pulumi access token OIDC.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -334,7 +430,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -407,7 +503,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -427,7 +523,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Checkout Scripts Repo
|
- name: Checkout Scripts Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
path: ci-scripts
|
path: ci-scripts
|
||||||
repository: pulumi/scripts
|
repository: pulumi/scripts
|
||||||
@@ -489,7 +585,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -539,7 +635,7 @@ jobs:
|
|||||||
needs: publish_sdk
|
needs: publish_sdk
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- id: version
|
- id: version
|
||||||
|
|||||||
2
.github/workflows/pull-request.yml
vendored
2
.github/workflows/pull-request.yml
vendored
@@ -10,7 +10,7 @@ jobs:
|
|||||||
name: comment-on-pr
|
name: comment-on-pr
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- name: Comment PR
|
- name: Comment PR
|
||||||
|
|||||||
114
.github/workflows/release.yml
vendored
114
.github/workflows/release.yml
vendored
@@ -39,7 +39,7 @@ jobs:
|
|||||||
pull-requests: write # For schema check comment.
|
pull-requests: write # For schema check comment.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -114,6 +114,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar provider binaries
|
- name: Tar provider binaries
|
||||||
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
run: tar -zcf ${{ github.workspace }}/bin/provider.tar.gz -C ${{
|
||||||
@@ -162,7 +210,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -203,6 +251,54 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
|
- name: Commit SDK changes for Renovate
|
||||||
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
|
'pull_request'
|
||||||
|
shell: bash
|
||||||
|
run: >
|
||||||
|
git diff --quiet -- sdk && echo "no changes to sdk" && exit
|
||||||
|
|
||||||
|
git config --global user.email "bot@pulumi.com"
|
||||||
|
|
||||||
|
git config --global user.name "pulumi-bot"
|
||||||
|
|
||||||
|
# Stash local changes and check out the PR's branch directly.
|
||||||
|
|
||||||
|
git stash
|
||||||
|
|
||||||
|
git fetch
|
||||||
|
|
||||||
|
git checkout "origin/$HEAD_REF"
|
||||||
|
|
||||||
|
|
||||||
|
# Apply and add our changes, but don't commit any files we expect to
|
||||||
|
|
||||||
|
# always change due to versioning.
|
||||||
|
|
||||||
|
git stash pop
|
||||||
|
|
||||||
|
git add sdk
|
||||||
|
|
||||||
|
git reset sdk/python/*/pulumi-plugin.json \
|
||||||
|
sdk/python/pyproject.toml \
|
||||||
|
sdk/dotnet/pulumi-plugin.json \
|
||||||
|
sdk/dotnet/*.*.csproj \
|
||||||
|
sdk/dotnet/version.txt \
|
||||||
|
sdk/go/*/pulumi-plugin.json \
|
||||||
|
sdk/go/*/internal/pulumiUtilities.go \
|
||||||
|
sdk/nodejs/package.json
|
||||||
|
|
||||||
|
git commit -m 'Commit SDK for Renovate'
|
||||||
|
|
||||||
|
|
||||||
|
# Push with pulumi-bot credentials to trigger a re-run of the
|
||||||
|
|
||||||
|
# workflow. https://github.com/orgs/community/discussions/25702
|
||||||
|
|
||||||
|
git push https://pulumi-bot:${{ steps.esc-secrets.outputs.PULUMI_BOT_TOKEN }}@github.com/${{ github.repository }} "HEAD:$HEAD_REF"
|
||||||
|
env:
|
||||||
|
HEAD_REF: ${{ github.head_ref }}
|
||||||
- run: git status --porcelain
|
- run: git status --porcelain
|
||||||
- name: Tar SDK folder
|
- name: Tar SDK folder
|
||||||
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
run: tar -zcf sdk/${{ matrix.language }}.tar.gz -C sdk/${{ matrix.language }} .
|
||||||
@@ -240,7 +336,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -337,7 +433,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -410,7 +506,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -430,7 +526,7 @@ jobs:
|
|||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
- name: Checkout Scripts Repo
|
- name: Checkout Scripts Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
path: ci-scripts
|
path: ci-scripts
|
||||||
repository: pulumi/scripts
|
repository: pulumi/scripts
|
||||||
@@ -492,7 +588,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
@@ -542,7 +638,7 @@ jobs:
|
|||||||
needs: publish_sdk
|
needs: publish_sdk
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- id: version
|
- id: version
|
||||||
@@ -578,7 +674,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
|
|||||||
2
.github/workflows/release_command.yml
vendored
2
.github/workflows/release_command.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
- env:
|
- env:
|
||||||
|
|||||||
21
.github/workflows/run-acceptance-tests.yml
vendored
21
.github/workflows/run-acceptance-tests.yml
vendored
@@ -41,7 +41,7 @@ jobs:
|
|||||||
name: comment-notification
|
name: comment-notification
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
@@ -66,7 +66,7 @@ jobs:
|
|||||||
pull-requests: write # For schema check comment.
|
pull-requests: write # For schema check comment.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
@@ -143,12 +143,8 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
# This worktree check is a safeguard against someone forgetting to
|
|
||||||
# re-build and commit locally, but we handle that commit automatically in
|
|
||||||
# the case of dependency bumps.
|
|
||||||
continue-on-error: ${{ contains(github.actor, 'renovate') }}
|
|
||||||
- name: Commit SDK changes for Renovate
|
- name: Commit SDK changes for Renovate
|
||||||
if: steps.worktreeClean.outcome == 'failure' &&
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
contains(github.actor, 'renovate') && github.event_name ==
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
'pull_request'
|
'pull_request'
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -245,7 +241,7 @@ jobs:
|
|||||||
id-token: write # For ESC secrets.
|
id-token: write # For ESC secrets.
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
@@ -297,9 +293,8 @@ jobs:
|
|||||||
sdk/nodejs/package.json
|
sdk/nodejs/package.json
|
||||||
sdk/python/pyproject.toml
|
sdk/python/pyproject.toml
|
||||||
sdk/java/build.gradle
|
sdk/java/build.gradle
|
||||||
continue-on-error: ${{ contains(github.actor, 'renovate') }}
|
|
||||||
- name: Commit SDK changes for Renovate
|
- name: Commit SDK changes for Renovate
|
||||||
if: steps.worktreeClean.outcome == 'failure' &&
|
if: failure() && steps.worktreeClean.outcome == 'failure' &&
|
||||||
contains(github.actor, 'renovate') && github.event_name ==
|
contains(github.actor, 'renovate') && github.event_name ==
|
||||||
'pull_request'
|
'pull_request'
|
||||||
shell: bash
|
shell: bash
|
||||||
@@ -385,7 +380,7 @@ jobs:
|
|||||||
id-token: write
|
id-token: write
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
@@ -496,7 +491,7 @@ jobs:
|
|||||||
name: sentinel
|
name: sentinel
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
@@ -531,7 +526,7 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
persist-credentials: false
|
persist-credentials: false
|
||||||
|
|||||||
2
.github/workflows/weekly-pulumi-update.yml
vendored
2
.github/workflows/weekly-pulumi-update.yml
vendored
@@ -37,7 +37,7 @@ jobs:
|
|||||||
permissions: write-all
|
permissions: write-all
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Repo
|
- name: Checkout Repo
|
||||||
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
|
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
|
||||||
with:
|
with:
|
||||||
lfs: true
|
lfs: true
|
||||||
- env:
|
- env:
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt
|
# WARNING: This file is autogenerated - changes will be overwritten if not made via https://github.com/pulumi/ci-mgmt
|
||||||
|
|
||||||
project_name: pulumi-docker-build
|
project_name: pulumi-docker-build
|
||||||
builds:
|
builds:
|
||||||
- id: build-provider
|
- id: build-provider
|
||||||
|
|||||||
@@ -5,6 +5,6 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"typescript": "^4.0.0",
|
"typescript": "^4.0.0",
|
||||||
"@pulumi/pulumi": "3.211.0"
|
"@pulumi/pulumi": "3.210.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -4,6 +4,6 @@
|
|||||||
"@types/node": "^20.0.0"
|
"@types/node": "^20.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pulumi/pulumi": "3.211.0"
|
"@pulumi/pulumi": "3.210.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -369,10 +369,10 @@
|
|||||||
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
|
resolved "https://registry.yarnpkg.com/@protobufjs/utf8/-/utf8-1.1.0.tgz#a777360b5b39a1a2e5106f8e858f2fd2d060c570"
|
||||||
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
integrity sha512-Vvn3zZrhQZkkBE8LSuW3em98c0FwgO4nxzv6OdSxPKJIEKY2bGbHn+mhGIPerzI4twdxaP8/0+06HBpwf345Lw==
|
||||||
|
|
||||||
"@pulumi/pulumi@3.211.0":
|
"@pulumi/pulumi@3.210.0":
|
||||||
version "3.211.0"
|
version "3.210.0"
|
||||||
resolved "https://registry.yarnpkg.com/@pulumi/pulumi/-/pulumi-3.211.0.tgz#eedee7d5ec1647209be5439d1e221c48e93f4a17"
|
resolved "https://registry.yarnpkg.com/@pulumi/pulumi/-/pulumi-3.210.0.tgz#c5d59ebaded83f5baf571e0c5c1b6a766fc694ea"
|
||||||
integrity sha512-buIAse/ll5I+gzYRYNeDL39wjg+Ehq+OZ8oWO0ISkB6E7xuB60rvS9ATKHJYacroYFsuE6pVEA19f7wc67mRzA==
|
integrity sha512-ZMe4oH8nFNi3Tig1U8mTEuqrjTyEz0aVkn+DvvjcBPvM7WzZSdB6xR9MiRK/ZUi0G5O+H7fx2gEEeq1vYcM5Jg==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@grpc/grpc-js" "^1.10.1"
|
"@grpc/grpc-js" "^1.10.1"
|
||||||
"@logdna/tail-file" "^2.0.6"
|
"@logdna/tail-file" "^2.0.6"
|
||||||
|
|||||||
@@ -4,6 +4,6 @@
|
|||||||
"@types/node": "^20.0.0"
|
"@types/node": "^20.0.0"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@pulumi/pulumi": "3.211.0"
|
"@pulumi/pulumi": "3.210.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -5,6 +5,6 @@
|
|||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"typescript": "^4.0.0",
|
"typescript": "^4.0.0",
|
||||||
"@pulumi/pulumi": "3.211.0"
|
"@pulumi/pulumi": "3.210.0"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user