@@ -11,14 +11,14 @@ jobs:
11
11
name : Bazel arm64 on macOS
12
12
runs-on : macos-13-xlarge
13
13
steps :
14
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
14
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
15
15
with :
16
16
fetch-depth : 0
17
17
- name : Bazel on macOS
18
18
run : |
19
19
set -x -e
20
20
bash -e .github/workflows/build.bazel.sh python3
21
- - uses : actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
21
+ - uses : actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
22
22
with :
23
23
name : ${{ runner.os }}-arm64-bazel-bin
24
24
path : |
36
36
matrix :
37
37
python : ['3.9', '3.10', '3.11', '3.12']
38
38
steps :
39
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
40
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
39
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
40
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
41
41
with :
42
42
name : ${{ runner.os }}-arm64-bazel-bin
43
43
path : bazel-bin
63
63
cp $f wheelhouse
64
64
done
65
65
ls wheelhouse/*
66
- - uses : actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
66
+ - uses : actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
67
67
with :
68
68
name : ${{ runner.os }}-arm64-${{ matrix.python }}-wheel
69
69
path : wheelhouse
@@ -73,19 +73,19 @@ jobs:
73
73
needs : macos-arm64-wheel
74
74
runs-on : ubuntu-20.04
75
75
steps :
76
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
76
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
77
77
with :
78
78
name : macOS-arm64-3.9-wheel
79
79
path : macOS-arm64-3.9-wheel
80
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
80
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
81
81
with :
82
82
name : macOS-arm64-3.10-wheel
83
83
path : macOS-arm64-3.10-wheel
84
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
84
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
85
85
with :
86
86
name : macOS-arm64-3.11-wheel
87
87
path : macOS-arm64-3.11-wheel
88
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
88
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
89
89
with :
90
90
name : macOS-arm64-3.12-wheel
91
91
path : macOS-arm64-3.12-wheel
98
98
cp macOS-arm64-3.12-wheel/*.whl wheelhouse/
99
99
ls -la wheelhouse/
100
100
sha256sum wheelhouse/*.whl
101
- - uses : actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
101
+ - uses : actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
102
102
with :
103
103
name : tensorflow-io-release-macos-arm64
104
104
path : wheelhouse
@@ -108,8 +108,8 @@ jobs:
108
108
needs : release-macos-arm64
109
109
runs-on : ubuntu-20.04
110
110
steps :
111
- - uses : actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
112
- - uses : actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7
111
+ - uses : actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
112
+ - uses : actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
113
113
with :
114
114
name : tensorflow-io-release-macos-arm64
115
115
path : wheelhouse
@@ -131,12 +131,12 @@ jobs:
131
131
COPY wheelhouse.commit /wheelhouse.commit
132
132
COPY wheelhouse.version /wheelhouse.version
133
133
EOF
134
- - uses : docker/setup-buildx-action@d70bba72b1f3fd22344832f00baa16ece964efeb # v3.3 .0
135
- - uses : docker/login-action@0d4c9c5ea7693da7b068278f7b52bda2a190a446 # v3.2 .0
134
+ - uses : docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3.8 .0
135
+ - uses : docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3.3 .0
136
136
with :
137
137
username : tfsigio
138
138
password : ${{ secrets.DOCKER_PASSWORD }}
139
- - uses : docker/build-push-action@15560696de535e4014efeff63c48f16952e52dd1 # v6.2 .0
139
+ - uses : docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6.10 .0
140
140
with :
141
141
context : .
142
142
push : true
0 commit comments