Skip to content

Commit

Permalink
Update deps (#256)
Browse files Browse the repository at this point in the history
  • Loading branch information
sethvargo committed May 23, 2024
1 parent 6be06c8 commit 9b3878c
Show file tree
Hide file tree
Showing 41 changed files with 977 additions and 1,599 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/compile-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
runs-on: 'ubuntu-latest'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29' # ratchet:actions/checkout@v4

- uses: 'actions/setup-go@v5'
- uses: 'actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7' # ratchet:actions/setup-go@v5
with:
go-version: '1.22'
go-version-file: 'go.mod'

- name: 'Get versions list'
run: |-
Expand Down Expand Up @@ -51,7 +51,7 @@ jobs:
- name: 'Create Pull Request'
if: steps.updates.outputs.had_changes == 'true'
uses: 'actions/github-script@v7'
uses: 'actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea' # ratchet:actions/github-script@v7
with:
github-token: '${{ secrets.ACTIONS_BOT_TOKEN }}'
script: |-
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ on:
jobs:
draft-release:
name: 'Draft release'
uses: 'google-github-actions/.github/.github/workflows/draft-release.yml@v0'
uses: 'google-github-actions/.github/.github/workflows/draft-release.yml@v0' # ratchet:exclude
with:
version_strategy: '${{ github.event.inputs.version_strategy }}'
# secrets must be explicitly passed to reusable workflows https://docs.github.com/en/enterprise-cloud@latest/actions/using-workflows/reusing-workflows#using-inputs-and-secrets-in-a-reusable-workflow
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,22 +10,25 @@ jobs:
release:
if: |-
${{ startsWith(github.event.head_commit.message, 'Release: v') }}
uses: 'google-github-actions/.github/.github/workflows/release.yml@v0'
uses: 'google-github-actions/.github/.github/workflows/release.yml@v0' # ratchet:exclude

publish:
needs:
- 'release'
permissions:
contents: 'read'
id-token: 'write'
runs-on: 'ubuntu-latest'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29' # ratchet:actions/checkout@v4

- uses: 'actions/setup-node@v4'
- uses: 'actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8' # ratchet:actions/setup-node@v4
with:
node-version: '20.x'
registry-url: 'https://wombat-dressing-room.appspot.com/'

- env:
NODE_AUTH_TOKEN: '${{ secrets.NODE_AUTH_TOKEN }}'
run: |-
npm publish
npm publish --provenance --access public
4 changes: 2 additions & 2 deletions .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ jobs:
runs-on: '${{ matrix.os }}'

steps:
- uses: 'actions/checkout@v4'
- uses: 'actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29' # ratchet:actions/checkout@v4

- uses: 'actions/setup-node@v4'
- uses: 'actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8' # ratchet:actions/setup-node@v4
with:
node-version: '20.12.x' # https://github.com/nodejs/node/issues/53033

Expand Down
Loading

0 comments on commit 9b3878c

Please sign in to comment.