Skip to content

Commit 398eb7e

Browse files
ThorstenHanspravinpushkarmukundansundar
authored
Update all actions that relied on Node.JS 12 #1202 (#1252)
Signed-off-by: Thorsten Hans <[email protected]> Co-authored-by: Pravin Pushkar <[email protected]> Co-authored-by: Mukundan Sundararajan <[email protected]>
1 parent 56ba059 commit 398eb7e

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

.github/workflows/dapr_cli.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ jobs:
5858
target_arch: arm
5959
steps:
6060
- name: Set up Go ${{ env.GOVER }}
61-
uses: actions/setup-go@v2
61+
uses: actions/setup-go@v3
6262
with:
6363
go-version: ${{ env.GOVER }}
6464
- name: Check out code into the Go module directory
65-
uses: actions/checkout@v2
65+
uses: actions/checkout@v3
6666
- name: Cache Go modules (Linux)
6767
if: matrix.target_os == 'linux'
6868
uses: actions/cache@v3
@@ -121,7 +121,7 @@ jobs:
121121
run: make test
122122
- name: Codecov
123123
if: matrix.target_arch == 'amd64' && matrix.target_os == 'linux'
124-
uses: codecov/codecov-action@v1
124+
uses: codecov/codecov-action@v3
125125
- name: Run make release to build and archive binaries
126126
run: |
127127
mkdir -p ${{ env.ARCHIVE_OUTDIR }}
@@ -196,7 +196,7 @@ jobs:
196196
runs-on: windows-latest
197197
steps:
198198
- name: Check out code
199-
uses: actions/checkout@v2
199+
uses: actions/checkout@v3
200200
- name: Parse release version and set REL_VERSION
201201
run: python ./.github/scripts/get_release_version.py
202202
- name: Update winget manifests
@@ -209,4 +209,4 @@ jobs:
209209
} else{
210210
$PackageIdentifier="Dapr.CLI"
211211
}
212-
.\wingetcreate.exe update "$PackageIdentifier" --submit --urls "$url|x64" --version "${{ env.REL_VERSION }}" --token "${{ secrets.DAPR_BOT_TOKEN }}"
212+
.\wingetcreate.exe update "$PackageIdentifier" --submit --urls "$url|x64" --version "${{ env.REL_VERSION }}" --token "${{ secrets.DAPR_BOT_TOKEN }}"

.github/workflows/fossa.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,16 +34,16 @@ jobs:
3434
FOSSA_API_KEY: b88e1f4287c3108c8751bf106fb46db6 # This is a push-only token that is safe to be exposed.
3535
steps:
3636
- name: "Checkout code"
37-
uses: actions/checkout@v2
37+
uses: actions/checkout@v3
3838

3939
- name: "Run FOSSA Scan"
40-
uses: fossas/fossa-action@v1.1.0 # Use a specific version if locking is preferred
40+
uses: fossas/fossa-action@v1.3.1 # Use a specific version if locking is preferred
4141
with:
4242
api-key: ${{ env.FOSSA_API_KEY }}
4343

4444
# Disable fossa test due to a bug on fossa side.
4545
# - name: "Run FOSSA Test"
46-
# uses: fossas/fossa-action@v1.1.0 # Use a specific version if locking is preferred
46+
# uses: fossas/fossa-action@v1.3.1 # Use a specific version if locking is preferred
4747
# with:
4848
# api-key: ${{ env.FOSSA_API_KEY }}
4949
# run-tests: true

.github/workflows/installdaprwin.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
steps:
4040
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
41-
- uses: actions/checkout@v2
41+
- uses: actions/checkout@v3
4242

4343
# Install Dapr
4444
- name: Install DAPR CLI

.github/workflows/kind_e2e.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ jobs:
8181
kind-image-sha: sha256:9be91e9e9cdf116809841fc77ebdb8845443c4c72fe5218f3ae9eb57fdb4bace
8282
steps:
8383
- name: Set up Go ${{ env.GOVER }}
84-
uses: actions/setup-go@v2
84+
uses: actions/setup-go@v3
8585
with:
8686
go-version: ${{ env.GOVER }}
8787
- name: Check out code onto GOPATH
88-
uses: actions/checkout@v2
88+
uses: actions/checkout@v3
8989
with:
9090
path: ./src/github.com/dapr/cli
9191
- name: Cache Go modules
@@ -124,7 +124,7 @@ jobs:
124124
# Log the generated kind.yaml for easy reference.
125125
cat kind.yaml
126126
- name: Create KinD Cluster
127-
uses: helm/kind-action@v1.0.0
127+
uses: helm/kind-action@v1.3.0
128128
with:
129129
config: kind.yaml
130130
cluster_name: kind

.github/workflows/self_hosted_e2e.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
dapr_install_mode: complete
6262
steps:
6363
- name: Set up Go ${{ env.GOVER }}
64-
uses: actions/setup-go@v2
64+
uses: actions/setup-go@v3
6565
with:
6666
go-version: ${{ env.GOVER }}
6767
- name: Check out code into the Go module directory

.github/workflows/upgrade_e2e.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
kind-image-sha: sha256:9be91e9e9cdf116809841fc77ebdb8845443c4c72fe5218f3ae9eb57fdb4bace
7777
steps:
7878
- name: Set up Go ${{ env.GOVER }}
79-
uses: actions/setup-go@v2
79+
uses: actions/setup-go@v3
8080
with:
8181
go-version: ${{ env.GOVER }}
8282
- name: Check out code onto GOPATH
@@ -122,7 +122,7 @@ jobs:
122122
cat kind.yaml
123123
124124
- name: Create KinD Cluster
125-
uses: helm/kind-action@v1.0.0
125+
uses: helm/kind-action@v1.3.0
126126
with:
127127
config: kind.yaml
128128
cluster_name: kind

0 commit comments

Comments
 (0)