Skip to content

Commit 9a5c31e

Browse files
committed
chore: pin versions of workflow actions
1 parent d6a9e17 commit 9a5c31e

Some content is hidden

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

52 files changed

+146
-115
lines changed

.github/workflows/chocolatey.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ jobs:
2323
if: ${{ github.event_name == 'workflow_dispatch' || (github.event.workflow_run.conclusion == 'success' && startsWith(github.event.workflow_run.head_branch, 'v')) }}
2424
steps:
2525
- name: Checkout
26-
uses: actions/checkout@v4
26+
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
2727

2828
- name: Unshallow
2929
run: git fetch --prune --unshallow
3030

3131
- name: Get latest release tag
32-
uses: oprypin/find-latest-tag@v1
32+
uses: oprypin/find-latest-tag@dd2729fe78b0bb55523ae2b2a310c6773a652bd1 # v1.1.2
3333
with:
3434
repository: ${{ github.repository }}
3535
releases-only: true
@@ -60,21 +60,21 @@ jobs:
6060
ls -la nuspec/chocolatey/tools/
6161
6262
- name: Choco Downgrade
63-
uses: crazy-max/ghaction-chocolatey@v3
63+
uses: crazy-max/ghaction-chocolatey@2526f467ccbd337d307fe179959cabbeca0bc8c0 # v3.4.0
6464
with:
6565
args: install chocolatey --version=1.2.1 --allow-downgrade -y -r --no-progress
6666

6767
- name: Pack Release
68-
uses: crazy-max/ghaction-chocolatey@v3
68+
uses: crazy-max/ghaction-chocolatey@2526f467ccbd337d307fe179959cabbeca0bc8c0 # v3.4.0
6969
with:
7070
args: pack nuspec/chocolatey/okta-aws-cli.nuspec --outputdirectory nuspec/chocolatey
7171

7272
- name: Choco Upgrade
73-
uses: crazy-max/ghaction-chocolatey@v3
73+
uses: crazy-max/ghaction-chocolatey@2526f467ccbd337d307fe179959cabbeca0bc8c0 # v3.4.0
7474
with:
7575
args: upgrade chocolatey
7676

7777
- name: Upload Release
78-
uses: crazy-max/ghaction-chocolatey@v3
78+
uses: crazy-max/ghaction-chocolatey@2526f467ccbd337d307fe179959cabbeca0bc8c0 # v3.4.0
7979
with:
8080
args: push nuspec/chocolatey/okta-aws-cli.${{ steps.version.outputs.nuget }}.nupkg -s https://push.chocolatey.org/ -k ${{ secrets.CHOCO_API_KEY }}

cmd/okta-aws-cli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2022-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

cmd/root/debug/debug.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2023-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

cmd/root/direct/direct.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2023-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

cmd/root/m2m/m2m.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2023-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

cmd/root/profileslist/profiles-list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2023-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

cmd/root/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2022-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

cmd/root/root_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2022-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

cmd/root/web/web.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2026-Present, Okta, Inc.
2+
* Copyright (c) 2023-Present, Okta, Inc.
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.

go.mod

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ require (
2222
github.com/spf13/viper v1.14.0
2323
github.com/stretchr/testify v1.9.0
2424
github.com/tidwall/pretty v1.2.0
25-
golang.org/x/net v0.34.0
26-
golang.org/x/sys v0.38.0
25+
golang.org/x/net v0.49.0
26+
golang.org/x/sys v0.41.0
2727
gopkg.in/dnaeon/go-vcr.v3 v3.1.2
2828
gopkg.in/ini.v1 v1.67.0
2929
gopkg.in/yaml.v2 v2.4.0
@@ -48,7 +48,7 @@ require (
4848
github.com/muesli/termenv v0.16.0 // indirect
4949
github.com/rivo/uniseg v0.4.7 // indirect
5050
github.com/xo/terminfo v0.0.0-20220910002029-abceb7e1c41e // indirect
51-
golang.org/x/crypto v0.32.0 // indirect
51+
golang.org/x/crypto v0.48.0 // indirect
5252
)
5353

5454
require (
@@ -68,7 +68,7 @@ require (
6868
github.com/spf13/jwalterweatherman v1.1.0 // indirect
6969
github.com/spf13/pflag v1.0.5 // indirect
7070
github.com/subosito/gotenv v1.4.2 // indirect
71-
golang.org/x/text v0.21.0 // indirect
71+
golang.org/x/text v0.34.0 // indirect
7272
gopkg.in/yaml.v3 v3.0.1 // indirect
7373
rsc.io/qr v0.2.0 // indirect
7474
)

0 commit comments

Comments
 (0)