Skip to content

Commit 4fcf73e

Browse files
committed
Change name from actions to voplica
Signed-off-by: Voplica <admin@voplica.com>
1 parent 6e18f64 commit 4fcf73e

File tree

136 files changed

+473
-473
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

136 files changed

+473
-473
lines changed

.github/workflows/cache-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
shell: bash
5454
run: packages/cache/__tests__/create-cache-files.sh ${{ runner.os }} ~/test-cache
5555

56-
# We're using node -e to call the functions directly available in the @actions/cache package
56+
# We're using node -e to call the functions directly available in the @voplica/cache package
5757
- name: Save cache using saveCache()
5858
run: |
5959
node -e "Promise.resolve(require('./packages/cache/lib/cache').saveCache(['test-cache','~/test-cache'],'test-${{ runner.os }}-${{ github.run_id }}'))"

.github/workflows/cache-windows-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
shell: bash
5353
run: packages/cache/__tests__/create-cache-files.sh ${{ runner.os }} ~/test-cache
5454

55-
# We're using node -e to call the functions directly available in the @actions/cache package
55+
# We're using node -e to call the functions directly available in the @voplica/cache package
5656
- name: Save cache using saveCache()
5757
run: |
5858
node -e "Promise.resolve(require('./packages/cache/lib/cache').saveCache(['test-cache','~/test-cache'],'test-${{ runner.os }}-${{ github.run_id }}'))"

CODEOWNERS

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
* @actions/actions-runtime
1+
* @voplica/actions-runtime
22

3-
/packages/artifact/ @actions/artifacts-actions
4-
/packages/cache/ @actions/actions-cache
5-
/packages/attest/ @actions/package-security
3+
/packages/artifact/ @voplica/artifacts-actions
4+
/packages/cache/ @voplica/actions-cache
5+
/packages/attest/ @voplica/package-security

README.md

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -19,95 +19,95 @@ The GitHub Actions ToolKit provides a set of packages to make creating actions e
1919

2020
## Packages
2121

22-
:heavy_check_mark: [@actions/core](packages/core)
22+
:heavy_check_mark: [@voplica/core](packages/core)
2323

2424
Provides functions for inputs, outputs, results, logging, secrets and variables. Read more [here](packages/core)
2525

2626
```bash
27-
$ npm install @actions/core
27+
$ npm install @voplica/core
2828
```
2929
<br/>
3030

31-
:runner: [@actions/exec](packages/exec)
31+
:runner: [@voplica/exec](packages/exec)
3232

3333
Provides functions to exec cli tools and process output. Read more [here](packages/exec)
3434

3535
```bash
36-
$ npm install @actions/exec
36+
$ npm install @voplica/exec
3737
```
3838
<br/>
3939

40-
:ice_cream: [@actions/glob](packages/glob)
40+
:ice_cream: [@voplica/glob](packages/glob)
4141

4242
Provides functions to search for files matching glob patterns. Read more [here](packages/glob)
4343

4444
```bash
45-
$ npm install @actions/glob
45+
$ npm install @voplica/glob
4646
```
4747
<br/>
4848

49-
:phone: [@actions/http-client](packages/http-client)
49+
:phone: [@voplica/http-client](packages/http-client)
5050

5151
A lightweight HTTP client optimized for building actions. Read more [here](packages/http-client)
5252

5353
```bash
54-
$ npm install @actions/http-client
54+
$ npm install @voplica/http-client
5555
```
5656
<br/>
5757

58-
:pencil2: [@actions/io](packages/io)
58+
:pencil2: [@voplica/io](packages/io)
5959

6060
Provides disk i/o functions like cp, mv, rmRF, which etc. Read more [here](packages/io)
6161

6262
```bash
63-
$ npm install @actions/io
63+
$ npm install @voplica/io
6464
```
6565
<br/>
6666

67-
:hammer: [@actions/tool-cache](packages/tool-cache)
67+
:hammer: [@voplica/tool-cache](packages/tool-cache)
6868

6969
Provides functions for downloading and caching tools. e.g. setup-* actions. Read more [here](packages/tool-cache)
7070

71-
See @actions/cache for caching workflow dependencies.
71+
See @voplica/cache for caching workflow dependencies.
7272

7373
```bash
74-
$ npm install @actions/tool-cache
74+
$ npm install @voplica/tool-cache
7575
```
7676
<br/>
7777

78-
:octocat: [@actions/github](packages/github)
78+
:octocat: [@voplica/github](packages/github)
7979

8080
Provides an Octokit client hydrated with the context that the current action is being run in. Read more [here](packages/github)
8181

8282
```bash
83-
$ npm install @actions/github
83+
$ npm install @voplica/github
8484
```
8585
<br/>
8686

87-
:floppy_disk: [@actions/artifact](packages/artifact)
87+
:floppy_disk: [@voplica/artifact](packages/artifact)
8888

8989
Provides functions to interact with actions artifacts. Read more [here](packages/artifact)
9090

9191
```bash
92-
$ npm install @actions/artifact
92+
$ npm install @voplica/artifact
9393
```
9494
<br/>
9595

96-
:dart: [@actions/cache](packages/cache)
96+
:dart: [@voplica/cache](packages/cache)
9797

9898
Provides functions to cache dependencies and build outputs to improve workflow execution time. Read more [here](packages/cache)
9999

100100
```bash
101-
$ npm install @actions/cache
101+
$ npm install @voplica/cache
102102
```
103103
<br/>
104104

105-
:lock_with_ink_pen: [@actions/attest](packages/attest)
105+
:lock_with_ink_pen: [@voplica/attest](packages/attest)
106106

107107
Provides functions to write attestations for workflow artifacts. Read more [here](packages/attest)
108108

109109
```bash
110-
$ npm install @actions/attest
110+
$ npm install @voplica/attest
111111
```
112112
<br/>
113113

@@ -176,7 +176,7 @@ Tests: 3 passed, 3 total
176176
Walkthrough creating a TypeScript Action with compilation, tests, linting, workflow, publishing, and versioning.
177177
178178
```javascript
179-
import * as core from '@actions/core';
179+
import * as core from '@voplica/core';
180180

181181
async function run() {
182182
try {

docs/adrs/0381-glob-module.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Related to artifact upload/download v2.
1616

1717
### New module
1818

19-
Create a new module `@actions/glob` that can be versioned at it's own pace - not tied to `@actions/io`.
19+
Create a new module `@voplica/glob` that can be versioned at it's own pace - not tied to `@voplica/io`.
2020

2121
### Signature
2222

@@ -212,5 +212,5 @@ On Linux/macOS `\` is also treated as an escape character.
212212

213213
## Consequences
214214

215-
- Publish new module `@actions/glob`
215+
- Publish new module `@voplica/glob`
216216
- Publish docs for the module (add link from `./README.md` to new doc `./packages/glob/README.md`)

docs/commands.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ function setSecret(secret: string): void {}
5151
Now, future logs containing BAR will be masked. E.g. running `echo "Hello FOO BAR World"` will now print `Hello FOO **** World`.
5252

5353
**WARNING** The add-mask and setSecret commands only support single-line
54-
secrets or multi-line secrets that have been escaped. `@actions/core`
54+
secrets or multi-line secrets that have been escaped. `@voplica/core`
5555
`setSecret` will escape the string you provide by default. When an escaped
5656
multi-line string is provided the whole string and each of its lines
5757
individually will be masked. For example you can mask `first\nsecond\r\nthird`

docs/github-package.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This walkthrough assumes that you have gone through the basic [javascript action
1414

1515
All of the dependencies we need should come packaged for us in this library's core and github packages. To install, run the following in your action:
1616

17-
`npm install @actions/core && npm install @actions/github`
17+
`npm install @voplica/core && npm install @voplica/github`
1818

1919
## Metadata
2020

@@ -41,8 +41,8 @@ runs:
4141
Now that we've installed our dependencies and defined our inputs, we're ready to start writing the action logic in `src/main.ts`! For clarity, we'll structure our action up as follows:
4242

4343
```ts
44-
import * as core from '@actions/core';
45-
import * as github from '@actions/github';
44+
import * as core from '@voplica/core';
45+
import * as github from '@voplica/github';
4646
4747
export async function run() {
4848
try {
@@ -84,8 +84,8 @@ if (github.context.payload.action !== 'opened') {
8484
Our whole `src/main.ts` file now looks like:
8585

8686
```ts
87-
import * as core from '@actions/core';
88-
import * as github from '@actions/github';
87+
import * as core from '@voplica/core';
88+
import * as github from '@voplica/github';
8989
9090
export async function run() {
9191
try {
@@ -126,8 +126,8 @@ await client.issues.createComment({
126126
For more docs on the client, you can visit the [Octokit REST documentation](https://octokit.github.io/rest.js/). Now our action code should be complete:
127127

128128
```ts
129-
import * as core from '@actions/core';
130-
import * as github from '@actions/github';
129+
import * as core from '@voplica/core';
130+
import * as github from '@voplica/github';
131131
132132
export async function run() {
133133
try {

packages/artifact/CONTRIBUTIONS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Tests will run for every push/pull_request [via Actions](https://github.com/acti
2222

2323
## Package tests
2424

25-
To run unit tests for the `@actions/artifact` package:
25+
To run unit tests for the `@voplica/artifact` package:
2626

2727
1. Clone `actions/toolkit` locally
2828
2. Install dependencies: `npm bootstrap`
@@ -38,6 +38,6 @@ Any easy way to test changes for the official upload/download actions is to fork
3838
2. Compile the changes: `npm run tsc`
3939
3. Symlink your package change: `npm link`
4040
2. Fork and clone either [upload-artifact](https://github.com/actions/upload-artifact) and [download-artifact](https://github.com/actions/download-artifact)
41-
1. In the locally cloned fork, link to your local toolkit changes: `npm link @actions/artifact`
41+
1. In the locally cloned fork, link to your local toolkit changes: `npm link @voplica/artifact`
4242
2. Then, compile your changes with: `npm run release`. The local `dist/index.js` should be updated with your changes.
4343
3. Commit and push to your fork, you can then test with a `uses:` in your workflow pointed at your fork.

packages/artifact/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# `@actions/artifact`
1+
# `@voplica/artifact`
22

33
Interact programmatically with [Actions Artifacts](https://docs.github.com/en/actions/using-workflows/storing-workflow-data-as-artifacts).
44

5-
This is the core library that powers the [`@actions/upload-artifact`](https://github.com/actions/upload-artifact) and [`@actions/download-artifact`](https://github.com/actions/download-artifact) actions.
5+
This is the core library that powers the [`@voplica/upload-artifact`](https://github.com/actions/upload-artifact) and [`@voplica/download-artifact`](https://github.com/actions/download-artifact) actions.
66

77

8-
- [`@actions/artifact`](#actionsartifact)
8+
- [`@voplica/artifact`](#actionsartifact)
99
- [v2 - What's New](#v2---whats-new)
1010
- [Improvements](#improvements)
1111
- [Breaking changes](#breaking-changes)
@@ -20,9 +20,9 @@ This is the core library that powers the [`@actions/upload-artifact`](https://gi
2020
## v2 - What's New
2121

2222
> [!IMPORTANT]
23-
> @actions/artifact v2+, upload-artifact@v4+, and download-artifact@v4+ are not currently supported on GHES yet. The previous version of this package can be found at [this tag](https://github.com/actions/toolkit/tree/@actions/artifact@1.1.2/packages/artifact) and [on npm](https://www.npmjs.com/package/@actions/artifact/v/1.1.2).
23+
> @voplica/artifact v2+, upload-artifact@v4+, and download-artifact@v4+ are not currently supported on GHES yet. The previous version of this package can be found at [this tag](https://github.com/actions/toolkit/tree/@voplica/artifact@1.1.2/packages/artifact) and [on npm](https://www.npmjs.com/package/@voplica/artifact/v/1.1.2).
2424
25-
The release of `@actions/artifact@v2` (including `upload-artifact@v4` and `download-artifact@v4`) are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.
25+
The release of `@voplica/artifact@v2` (including `upload-artifact@v4` and `download-artifact@v4`) are major changes to the backend architecture of Artifacts. They have numerous performance and behavioral improvements.
2626

2727
### Improvements
2828

@@ -57,17 +57,17 @@ The release of `@actions/artifact@v2` (including `upload-artifact@v4` and `downl
5757
Install the package:
5858

5959
```bash
60-
npm i @actions/artifact
60+
npm i @voplica/artifact
6161
```
6262

6363
Import the module:
6464

6565
```js
6666
// ES6 module
67-
import {DefaultArtifactClient} from '@actions/artifact'
67+
import {DefaultArtifactClient} from '@voplica/artifact'
6868
6969
// CommonJS
70-
const {DefaultArtifactClient} = require('@actions/artifact')
70+
const {DefaultArtifactClient} = require('@voplica/artifact')
7171
```
7272

7373
Then instantiate:

packages/artifact/RELEASES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @actions/artifact Releases
1+
# @voplica/artifact Releases
22

33
### 2.2.1
44

@@ -81,11 +81,11 @@
8181

8282
### 1.0.2
8383

84-
- Update to v2.0.1 of `@actions/http-client` [#1087](https://github.com/actions/toolkit/pull/1087)
84+
- Update to v2.0.1 of `@voplica/http-client` [#1087](https://github.com/actions/toolkit/pull/1087)
8585

8686
### 1.0.1
8787

88-
- Update to v2.0.0 of `@actions/http-client`
88+
- Update to v2.0.0 of `@voplica/http-client`
8989

9090
### 1.0.0
9191

@@ -110,7 +110,7 @@
110110

111111
### 0.5.1
112112

113-
- Bump @actions/http-client to version 1.0.11 to fix proxy related issues during artifact upload and download
113+
- Bump @voplica/http-client to version 1.0.11 to fix proxy related issues during artifact upload and download
114114

115115
### 0.5.0
116116

@@ -122,7 +122,7 @@
122122

123123
### 0.4.1
124124

125-
- Update to latest @actions/core version
125+
- Update to latest @voplica/core version
126126

127127
### 0.4.0
128128

0 commit comments

Comments
 (0)